@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') !!}
{{ Form::select('location_id', $location_list , Input::old('location_id', $user->location_id), array('class'=>'select2', 'style'=>'width:300px')) }} {!! $errors->first('location_id', ' :message') !!}
{!! Form::locales('locale', Input::old('locale', $user->locale), 'select2') !!} {!! $errors->first('locale', ':message') !!}
{!! $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
{{ Form::file('avatar') }} {!! $errors->first('avatar', ':message') !!}
@if ($snipeSettings->two_factor_enabled=='1')
@can('self.two_factor')
@endif
@stop