Edit Client
{!! Form::open(['id' => 'editForm', 'files' => true]) !!}
{!! Form::hidden('client_id', null, ['id' => 'clientId']) !!}
{!! Form::label('name', 'Name') !!}* {!! Form::text('name', '', ['id' => 'edit_name', 'class' => 'form-control', 'required']) !!}
{!! Form::label('department_id', 'Department') !!}* {!! Form::select('department_id', $departments, null, ['id' => 'edit_department_id', 'class' => 'form-control', 'required']) !!}
{!! Form::label('email', 'Email') !!} {!! Form::email('email', '', ['id' => 'edit_email', 'class' => 'form-control']) !!}
{!! Form::label('website', 'Website') !!} {!! Form::url('website', '', ['id' => 'edit_website', 'class' => 'form-control']) !!}
{!! Form::button('Save', ['type' => 'submit', 'class' => 'btn btn-primary', 'id' => 'btnEditSave', 'data-loading-text' => " Processing..."]) !!}
{!! Form::close() !!}