@extends('users.layout.app') @section('content') @include('users.partials.sidebar')
Edit Profile
{{ csrf_field() }}
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('last_name')) {{ $errors->first('last_name') }} @endif
@if ($errors->has('company_name')) {{ $errors->first('company_name') }} @endif
@if ($errors->has('address')) {{ $errors->first('address') }} @endif
@if ($errors->has('city')) {{ $errors->first('city') }} @endif
@if ($errors->has('state')) {{ $errors->first('state') }} @endif
@if ($errors->has('zip_code')) {{ $errors->first('zip_code') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('website')) {{ $errors->first('website') }} @endif
@if ($errors->has('phone_no') || $errors->has('prefix') || $errors->has('area_code')) {{ $errors->first('area_code') }} {{ $errors->first('prefix') }} {{ $errors->first('phone_no') }} @endif
@if ($errors->has('fax') || $errors->has('fax_prefix') || $errors->has('fax_area_code')) {{ $errors->first('fax_area_code') }} {{ $errors->first('fax_prefix') }} {{ $errors->first('fax') }} @endif
@if ($errors->has('license_no')) {{ $errors->first('license_no') }} @endif
@if ($errors->has('no_designers')) {{ $errors->first('no_designers') }} @endif
Change Password
{{ csrf_field() }}
@if ($errors->has('old_password')) {{ $errors->first('old_password') }} @endif
@if ($errors->has('new_password')) {{ $errors->first('new_password') }} @endif
@if ($errors->has('password_confirmation')) {{ $errors->first('password_confirmation') }} @endif
@endsection @section('javascripts') @endsection