@extends('layouts.app') @section('title','Profile') @section('content')
@if(Session::has('message')) @endif {!! Form::open(['method'=>'PUT','action' => ['ProfileController@updateProfile']]) !!}

Edit Profile


{!! Form::label('first_name', 'First Name') !!} {!! Form::text('first_name', $user->first_name, ['class'=>'form-control', 'placeholder'=>'First Name']) !!} @if ($errors->has('first_name')) {{ $errors->first('first_name') }} @endif
{!! Form::label('last_name', 'Last Name') !!} {!! Form::text('last_name', $user->last_name, ['class'=>'form-control', 'placeholder' =>'Last Name']) !!} @if ($errors->has('last_name')) {{ $errors->first('last_name') }} @endif
{!! Form::label('email', 'Email') !!} {!! Form::email('email', $user->email, ['class'=>'form-control', 'placeholder' =>'Email','disabled']) !!} @if ($errors->has('email')) {{ $errors->first('email') }} @endif
{!! Form::label('phone_number', 'Phone Number') !!} {!! Form::text('phone_number', $user->phone_number, ['class'=>'form-control', 'placeholder' =>'Phone Number']) !!} @if ($errors->has('phone_number')) {{ $errors->first('phone_number') }} @endif
{!! Form::label('company', 'Company') !!} {!! Form::text('company', $user->company, ['class'=>'form-control', 'placeholder' =>'Company']) !!} @if ($errors->has('company')) {{ $errors->first('company') }} @endif
{!! Form::label('address', 'Address') !!} {!! Form::text('address', $user->address, ['class'=>'form-control', 'placeholder' =>'Address']) !!} @if ($errors->has('address')) {{ $errors->first('address') }} @endif
{!! Form::label('city', 'City') !!} {!! Form::text('city', $user->city, ['class'=>'form-control', 'placeholder' =>'City']) !!} @if ($errors->has('city')) {{ $errors->first('city') }} @endif
{!! Form::label('state_id', 'State') !!} {!! Form::select('state_id', $states, $user->state_id,['class'=>'form-control', 'placeholder'=>'Select State']) !!} @if ($errors->has('state_id')) {{ $errors->first('state_id') }} @endif
{!! Form::label('zip', 'Zip Code') !!} {!! Form::number('zip', $user->zip, ['class'=>'form-control', 'placeholder' =>'Zip Code']) !!} @if ($errors->has('zip')) {{ $errors->first('zip') }} @endif
{!! Form::submit('Update Profile', ['class'=>'btn btn-primary']) !!}
{!! Form::close() !!}
@endsection