{!! Form::text('nama', null, ['class' => 'form-control']) !!} @if ($errors->has('nama')) {{$errors->first('nama')}} @endif
{!! Form::radio('jenis_kelamin','laki-laki', null, ['class' => 'form-control']) !!} Laki-laki {!! Form::radio('jenis_kelamin', 'perempuan', null, ['class' => 'form-control']) !!} Perempuan @if ($errors->has('jenis_kelamin')) {{$errors->first('jenis_kelamin')}} @endif
{!! Form::date('tanggal_lahir', null, ['class' => 'form-control']) !!} @if ($errors->has('tanggal_lahir')) {{$errors->first('tanggal_lahir')}} @endif
{!! Form::text('asal', null, ['class' => 'form-control']) !!} @if ($errors->has('asal')) {{$errors->first('asal')}} @endif
{!! Form::text('nomor_hp', null, ['class' => 'form-control']) !!} @if ($errors->has('nomor_hp')) {{$errors->first('nomor_hp')}} @endif
{!! Form::text('email', null, ['class' => 'form-control']) !!} @if ($errors->has('email')) {{$errors->first('email')}} @endif
{!! Form::file('foto', ['class' => 'form-control','accept'=>'image/x-png,image/gif,image/jpeg']) !!} @if ($errors->has('foto')) {{$errors->first('foto')}} @endif
@section('scripts') @endsection @section('style') @endsection