{{ __('user.update_photo') }}
{{ Form::open(['route' => ['users.photo-upload', $user], 'method' => 'patch', 'files' => true]) }}
{{ userPhoto($user, ['style' => 'width:100%;max-width:300px']) }}
{!! FormField::file('photo', ['required' => true, 'label' => __('user.reupload_photo'), 'info' => ['text' => 'Format jpg, maks: 200 Kb.', 'class' => 'warning']]) !!}
{{ Form::close() }}