{{ trans('app.profile') }}
{!! Form::errors($errors) !!}
@if (isset($user))
{!! Form::model($user, ['route' => ['users.update', $user->id], 'files' => true, 'method' => 'PUT']) !!}
@else
{!! Form::open(['url' => 'users']) !!}
@endif
@section('users-user-form-fields')
{!! Form::smartText('username', trans('app.username')) !!}
{!! Form::smartEmail('email', trans('app.email')) !!}
{!! Form::smartGroupOpen(null, trans('app.password')) !!}
{!! button(trans('users::change'), url('users/'.$user->id.'/password')) !!}
{!! Form::smartGroupClose() !!}
{!! Form::smartSelectForeign('language_id', trans('users::localisation')) !!}
{!! Form::helpBlock(trans('users::local_info')) !!}
{!! Form::smartText('first_name', trans('users::first_name')) !!}
{!! Form::smartText('last_name', trans('users::last_name')) !!}
{!! Form::smartGroupOpen('gender', trans('users::gender')) !!}
{!! Form::select('gender', ['0' => trans('users::unknown'), '1' => trans('users::female'), '2' => trans('users::male'), '3' => trans('users::other')]) !!}
{!! Form::smartGroupClose() !!}
{!! Form::smartSelectForeign('country_id', trans('app.object_country')) !!}
{!! Form::smartText('birthdate', trans('users::birthdate')) !!}
{!! Form::smartText('occupation', trans('users::occupation')) !!}
{!! Form::smartText('website', trans('app.website')) !!}
{!! Form::smartText('facebook', 'Facebook') !!}
{!! Form::smartText('twitter', 'Twitter') !!}
{!! Form::smartText('discord', 'Discord') !!}
{!! Form::smartText('skype', 'Skype') !!}
{!! Form::smartText('steam_id', trans('users::steam_id')) !!}
{!! Form::smartText('cpu', trans('users::cpu')) !!}
{!! Form::smartText('graphics', trans('users::graphics')) !!}
{!! Form::smartText('ram', trans('users::ram')) !!}
{!! Form::smartText('motherboard', trans('users::motherboard')) !!}
{!! Form::smartText('drives', trans('users::drives')) !!}
{!! Form::smartText('display', trans('users::display')) !!}
{!! Form::smartText('mouse', trans('users::mouse')) !!}
{!! Form::smartText('keyboard', trans('users::keyboard')) !!}
{!! Form::smartText('headset', trans('users::headset')) !!}
{!! Form::smartText('mouse_pad', trans('users::mouse_pad')) !!}
{!! Form::smartText('game', trans('app.object_game')) !!}
{!! Form::smartText('food', trans('users::food')) !!}
{!! Form::smartText('drink', trans('users::drink')) !!}
{!! Form::smartText('music', trans('users::music')) !!}
{!! Form::smartText('film', trans('users::film')) !!}
{!! Form::smartTextarea('about', trans('users::about')) !!}
{!! Form::smartText('signature', trans('users::signature')) !!}
{!! Form::smartImageFile('image', trans('users::image')) !!}
{!! Form::smartImageFile('avatar', trans('users::avatar')) !!}
@show
{!! Form::actions(['submit' => trans('app.update')]) !!}
{!! Form::close() !!}