@extends('backend/layouts/default') {{-- Page title --}} @section('title') Your Profile @stop {{-- Account page content --}} @section('content')

@lang('general.editprofile')

{{ 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') }}
{{ $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') }}
@lang('button.cancel')
@stop