@extends('layouts/default') {{-- Page title --}} @section('title') {{ trans('general.editprofile') }} @stop {{-- Account page content --}} @section('content')
{{ Form::open(['method' => 'POST', 'files' => true, 'class' => 'form-horizontal', 'autocomplete' => 'off']) }}
{!! $errors->first('first_name', ' :message') !!}
{!! $errors->first('last_name', ' :message') !!}
@can('self.edit_location') @include ('partials.forms.edit.location-profile-select', ['translated_name' => trans('general.location')]) @endcan
@if (!config('app.lock_passwords')) {!! Form::locales('locale', Input::old('locale', $user->locale), 'select2') !!} {!! $errors->first('locale', ':message') !!} @else

{{ trans('general.feature_disabled') }}

@endif
{!! $errors->first('website', ' :message') !!}
{!! $errors->first('gravatar', ' :message') !!}

Change your avatar at Gravatar.com.

@if ($user->avatar)
{{ Form::checkbox('avatar_delete') }} {!! $errors->first('avatar_delete', ':message') !!}
@endif

{{ trans('general.image_filetypes_help') }}

{!! $errors->first('avatar', ':message') !!}
@if ($snipeSettings->two_factor_enabled=='1')
@can('self.two_factor')
@endif
{{ Form::close() }}
@stop