{{ Form::field('first_name', trans('clumsy::fields.first_name')) }} {{ Form::field('last_name', trans('clumsy::fields.last_name')) }} {{ Form::field('email', trans('clumsy::fields.email')) }} @if ($edited_user_id == 'new' || $edited_user_id != $user->id) {{ Form::dropdown('group', trans('clumsy::fields.role'), $groups, $edited_user_group) }} @if ($edited_user_id == 'new') {{ Form::field('password', trans('clumsy::fields.password'), 'password') }} {{ Form::field('password_confirmation', trans('clumsy::fields.password_confirmation'), 'password') }} @endif @endif @if ($edited_user_id == $user->id) {{ Form::field('new_password', trans('clumsy::fields.new_password'), 'password') }} {{ Form::field('new_password_confirmation', trans('clumsy::fields.new_password_confirmation'), 'password') }} @endif
@if ($item->exists)
@if ($throttle->isEnabled()) @if ($item_status->isBanned())

{{ trans('clumsy::fields.user_is_banned') }}

@elseif ($item_status->isSuspended())

{{ trans('clumsy::fields.user_is_suspended') }}

@elseif ($item->activated)

{{ trans('clumsy::fields.user_is_active') }}

@else

{{ trans('clumsy::fields.user_is_inactive') }}

@endif @endif

{{ trans('clumsy::fields.last_login') }}{{ $item->last_login ? display_date($user->last_login, 'long with time') : trans('clumsy::fields.never') }}

@endif