{!! Form::label('first_name', __('custom.attribute.first_name')) !!} {!! Form::text('first_name', null, ['class' => 'form-control']) !!}
{!! Form::label('last_name', __('custom.attribute.last_name')) !!} {!! Form::text('last_name', null, ['class' => 'form-control']) !!}
{!! Form::label('picture', __('custom.attribute.picture')) !!}
{!! Form::file('picture-file', ['id' => 'picture-file']) !!}
{!! Form::label('username', __('custom.attribute.username')) !!} {!! Form::text('username', null, ['class' => 'form-control']) !!}
{!! Form::label('email', __('custom.attribute.email')) !!} {!! Form::text('email', null, ['class' => 'form-control']) !!}
@can('user-management')
{!! Form::label('role', __('custom.attribute.role')) !!} {!! Form::select('role', $roles, $role, ['class' => 'form-control'], Helper::getOptionClasses($roles)) !!}
@endcan
{!! Form::label('locale', __('custom.attribute.locale')) !!} {!! Form::select('locale', Helper::getAvailableLanguages(), null, ['class' => 'form-control'], Helper::getOptionClasses(Helper::getAvailableLanguages())) !!}
{!! Form::label('password', __('custom.attribute.password')) !!} {!! Form::password('password', ['class' => 'form-control']) !!}
{!! Form::label('password_confirmation', __('custom.attribute.confirm-password')) !!} {!! Form::password('password_confirmation', ['class' => 'form-control']) !!}