@extends(App\Models\General::first()->theme.'.layouts.app') @section('title') Profile Edit | {{App\Models\General::first()->title}} | {{App\Models\General::first()->subtitle}} @endsection @section('SEO') @endsection @push('css') @endpush @section('contents')
@include(App\Models\General::first()->theme.'.customer.includes.sidebar')
@include(App\Models\General::first()->theme.'.alerts')

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('mobile'))

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

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

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

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

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

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

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

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

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

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

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

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

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

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