@extends('layouts.backend') @section('title', 'Opciones') @section('section', 'Opciones') @section('content')
{!! Form::open([ 'class' => 'options-form', 'files' => true ]) !!}
@foreach($output as $group)
@foreach($group->options as $option)
@include('backend.options.'.$option->input)
@endforeach
@endforeach
{!! Form::close() !!}
@endsection @section('scripts') @endsection