@component('components.superadmin.modal', ['title' => 'CREA NUOVA SERVIZI', 'id' => 'editService']) @if (isset($service)) {{ Form::model($service, ['action' => ['FormController@index', 'create_update_products_data'], 'method' => 'POST'], ['class' => 'dynamic-form']) }} @else {{ Form::open(['action' => ['FormController@index', 'create_update_products_data']]) }} @endif {{ Form::hidden('dynamic-form', 1) }} {{ Form::hidden('model', '\App\Models\Service') }} {{ Form::hidden('route', 'superadmin.services.index') }} {{ Form::hidden('validate', 'App\Http\Requests\Superadmin\NameRequired') }} @if (isset($service)) {{ Form::hidden('id', $service->id) }} @endif
{{ Form::label('name', 'Nome*') }} {{ Form::text('name', null, ['class' => 'form-control']) }}
{{ Form::label('catalog_page', 'Pagina Catalogo') }} {{ Form::text('catalog_page', null, ['class' => 'form-control']) }}
{{ Form::label('note', 'Commenti') }} {{ Form::textarea('note', null, ['class' => 'form-control', 'min' => 0]) }}

I campi Contrassegnati da (*) sono obbligatori.

{{ Form::close() }} @endcomponent