{{-- if u want to use Dinamis Form, see the intruction on readme. --}} @php $option = []; $option['form'] = $form; if (isset($data)) $option['data'] = $data; @endphp @include('view.form.dinamisform', $option) {{-- manual form --}}
{!! Form::text('nama', null, ['class' => 'form-control']) !!} @if ($errors->has('nama')) {{$errors->first('nama')}} @endif
{{-- text editor --}}
{!! Form::textarea('keterangan', null, ['class' => 'form-control','id'=>'summernote']) !!} @if ($errors->has('keterangan')) {{$errors->first('keterangan')}} @endif
@section('scripts') @endsection @section('style') @endsection