{!! Form::model($shop, ['method' => 'PUT', 'route' => ['admin.vendor.shop.update', $shop->id], 'files' => true, 'id' => 'form', 'data-toggle' => 'validator']) !!}
{{ trans('app.verification') }}
{{ Form::hidden('id_verified', 0) }} {!! Form::checkbox('id_verified', null, $shop->id_verified, ['id' => 'id_verified', 'class' => 'icheckbox_line']) !!} {!! Form::label('id_verified', trans('app.id_verified')) !!}
{{ Form::hidden('address_verified', 0) }} {!! Form::checkbox('address_verified', null, $shop->address_verified, ['id' => 'address_verified', 'class' => 'icheckbox_line']) !!} {!! Form::label('address_verified', trans('app.address_verified')) !!}
{{ Form::hidden('phone_verified', 0) }} {!! Form::checkbox('phone_verified', null, $shop->phone_verified, ['id' => 'phone_verified', 'class' => 'icheckbox_line']) !!} {!! Form::label('phone_verified', trans('app.phone_verified')) !!}
{{ Form::hidden('active', 0) }} {!! Form::checkbox('active', null, $shop->active, ['id' => 'active', 'class' => 'icheckbox_line']) !!} {!! Form::label('active', trans('app.active')) !!}
{!! Form::submit(trans('app.update'), ['class' => 'btn btn-flat btn-new']) !!}
{!! Form::close() !!}