@extends('layouts.app') @section('content')
Welcome {{ Helper::showUsername() }}
Home
My Profile
Edit Information
@csrf
First Name
@if ($errors->has('first_name'))
{{ $errors->first('first_name') }}
@endif
Last Name
@if ($errors->has('last_name'))
{{ $errors->first('last_name') }}
@endif
Mobile No.
@if ($errors->has('mobile_no'))
{{ $errors->first('mobile_no') }}
@endif
Phone No.
@if ($errors->has('phone'))
{{ $errors->first('phone') }}
@endif
Email
@if ($errors->has('email'))
{{ $errors->first('email') }}
@endif
City
@if ($errors->has('city'))
{{ $errors->first('city') }}
@endif
State
@if ($errors->has('state'))
{{ $errors->first('state') }}
@endif
Zipcode
@if ($errors->has('citzipcodey'))
{{ $errors->first('zipcode') }}
@endif
Address
@if ($errors->has('address'))
{{ $errors->first('address') }}
@endif
Address Line2
@if ($errors->has('address_line'))
{{ $errors->first('address_line') }}
@endif
Save
Cancel
@include('layouts.user_menu')
@endsection @push('js') @endpush