@extends('frontend.partials.master') @section('title') Profile Edit @endsection @push('css') @endpush @section('content')
@include('customer.includes.sidebar')

My Profile Update

@csrf
@if ($errors->has('name'))

{{ $errors->first('name') }}

@endif
@if ($errors->has('company'))

{{ $errors->first('company') }}

@endif
@if ($errors->has('email'))

{{ $errors->first('email') }}

@endif
@if ($errors->has('phone'))

{{ $errors->first('phone') }}

@endif
@if ($errors->has('address'))

{{ $errors->first('address') }}

@endif
@endsection @push('js') @endpush