@extends( 'layouts.master' ) @section( 'style' ) @parent @endsection @section( 'content' ) {!! csrf_field() !!}

User Profile

E-mail address {{ Auth::user()->email }}
Title @if ( $errors->has( 'title' ) ) {{ $errors->first( 'title' ) }} @endif
First Name @if ( $errors->has( 'firstname' ) ) {{ $errors->first( 'firstname' ) }} @endif
Last Name @if ( $errors->has( 'lastname' ) ) {{ $errors->first( 'lastname' ) }} @endif
Mailing Address @if ( $errors->has( 'address' ) ) {{ $errors->first( 'address' ) }} @endif
City @if ( $errors->has( 'city' ) ) {{ $errors->first( 'city' ) }} @endif
State, Province @if ( $errors->has( 'state' ) ) {{ $errors->first( 'state' ) }} @endif
Zip Code @if ( $errors->has( 'zip' ) ) {{ $errors->first( 'zip' ) }} @endif
Country/Region @if ( $errors->has( 'country' ) ) {{ $errors->first( 'country' ) }} @endif
Phone @if ( $errors->has( 'phone' ) ) {{ $errors->first( 'phone' ) }} @endif
Fax @if ( $errors->has( 'fax' ) ) {{ $errors->first( 'fax' ) }} @endif
@endsection