{!! Form::text('nama', null, ['class' => 'form-control']) !!} @if ($errors->has('nama')) {{$errors->first('nama')}} @endif
{!! Form::select('lasik_id', $lasik, null, ['class' => 'form-control','placeholder'=>'Pilih Lasik']) !!} @if ($errors->has('lasik_id')) {{$errors->first('lasik_id')}} @endif
{{-- text editor --}}
{!! Form::textarea('keterangan', null, ['class' => 'form-control','id'=>'summernote']) !!} @if ($errors->has('keterangan')) {{$errors->first('keterangan')}} @endif
{!! Form::textarea('kegunaan', null, ['class' => 'form-control','id'=>'summernote2']) !!} @if ($errors->has('kegunaan')) {{$errors->first('kegunaan')}} @endif
@section('scripts') @endsection @section('style') @endsection