Contact Information
{!! Form::open( ['url' => 'profile', 'method' => 'post'] ) !!}
{!! Form::label('first','First Name') !!}
{!! Form::text('first', $user->first, ['class' => 'form-control'] ) !!}
{!! Form::label('last','Last Name') !!}
{!! Form::text('last', $user->last, ['class' => 'form-control'] ) !!}
{!! Form::label('email','Email') !!}
{!! Form::text('email', $user->email, ['class' => 'form-control'] ) !!}
{!! Form::label('institution','Institution') !!}
{!! Form::text('institution', isset($user->profile->institution) ? $user->profile->institution : '', ['class' => 'form-control'] ) !!}
{!! Form::label('street','Street') !!}
{!! Form::text('street', isset($user->profile->street) ? $user->profile->street : '', ['class' => 'form-control'] ) !!}
{!! Form::label('city','City') !!}
{!! Form::text('city', isset($user->profile->city) ? $user->profile->city : '', ['class' => 'form-control'] ) !!}
{!! Form::label('state','State') !!}
{!! Form::text('state', isset($user->profile->state) ? $user->profile->state : '', ['class' => 'form-control'] ) !!}
{!! Form::label('zip','Zip') !!}
{!! Form::text('zip', isset($user->profile->zip) ? $user->profile->zip : '', ['class' => 'form-control'] ) !!}
{!! Form::label('country','Country') !!}
{!! Form::text('country', isset($user->profile->country) ? $user->profile->country : '', ['class' => 'form-control'] ) !!}