New Client
{!! Form::open(['id' => 'addNewForm', 'files' => true]) !!}
{!! Form::label('name', 'Name') !!}* {!! Form::text('name', '', ['id' => 'name', 'class' => 'form-control', 'required']) !!}
{!! Form::label('department_id', 'Department') !!}* {!! Form::select('department_id', $departments, null, ['id' => 'department_id', 'class' => 'form-control', 'required']) !!}
{!! Form::label('email', 'Email') !!} {!! Form::email('email', '', ['id' => 'email', 'class' => 'form-control']) !!}
{!! Form::label('website', 'Website') !!} {!! Form::url('website', '', ['id' => 'website', 'class' => 'form-control']) !!}
{!! Form::button('Save', ['type' => 'submit', 'class' => 'btn btn-primary', 'id' => 'btnSave', 'data-loading-text' => " Processing..."]) !!}
{!! Form::close() !!}