{!! Form::label('name', __('models/request_forms.fields.name').':') !!}
{!! Form::text('name', null, ['class' => ($errors->has('name')) ? 'form-control is-invalid' : 'form-control']) !!}
@if ($errors->has('name'))
{{ $errors->first('name') }}
@endif
@section('css')
@endsection
@section('scripts')
@parent
@endsection
{!! Form::label('note', __('models/request_forms.fields.note').':') !!}
{!! Form::textarea('note', null, ['class' => ($errors->has('note')) ? 'form-control is-invalid' : 'form-control'] ) !!}
@if ($errors->has('note'))
{{ $errors->first('note') }}
@endif