@if($var['method']=='edit')
{!! Form::model($listPetugas, ['method'=>'PATCH', 'route'=> ['petugas.update', $listPetugas->id.$var['url']['all']], 'id'=>'form-petugas', 'class'=>'form-horizontal', 'files'=>true]) !!}
@elseif($var['method']=='create')
{!! Form::open(['id'=>'form-petugas', 'method'=>'POST', 'route'=>'petugas.store', 'class'=>'form-horizontal', 'files'=>true]) !!}
@else
{!! Form::model($listPetugas, ['class'=>'form-horizontal', 'files'=>true]) !!}
@endif
{!! Form::label('foto', 'Upload Foto (300x300) px .jpg', ['class' => 'control-label']) !!}
{!! Form::file('foto', ['class'=>'dropify', 'accept'=>'.jpg', 'data-max-width'=>'300',
'data-default-file'=>($var['method']!='create'?URL('/').'/upload/foto-petugas/'.$listPetugas->foto:null) ]) !!}
{!! Form::close() !!}