{{ Form::model($service, [
'method' => $service->exists ? "PUT" : "POST",
'route' => $service->exists ? ['services.update', $service->id] : "services.store"
]) }}
{{ Form::label('duration', trans('services.duration')) }}
{{ Form::select('duration',[
'delay' => trans('services.durations.delay'),
'3' => trans('services.durations.3'),
'7' => trans('services.durations.7'),
'10' => trans('services.durations.10')
],null, ['class' => 'form-control select2', 'required' => 'required', 'placeholder' => trans('services.duration') ]) }}
{{ Form::label('tel', trans('services.tel')) }}
{{ Form::text('tel', null, ['class' => 'form-control', 'required' => 'required', 'placeholder' => trans('services.tel') ]) }}
{{ Form::label('product_name', trans('services.name')) }}
{{ Form::text('product_name', null, ['class' => 'form-control', 'required' => 'required', 'placeholder' => trans('services.name') ]) }}
{{ Form::label('model', trans('services.model')) }}
{{ Form::text('model', null, ['class' => 'form-control', 'placeholder' => trans('services.model') ]) }}
{{ Form::label('note', trans('services.note')) }}
{{ Form::textarea('note', null, ['class' => 'form-control', 'placeholder' => trans('services.note'), 'rows' => '3' ]) }}