@extends('customer.layout.master') @section('pageTitle', (isset($pageTitle)) ? $pageTitle : config('app.APP_NAME') ) @section('pageDescription', (isset($pageDescription)) ? $pageDescription : config('app.APP_NAME') ) @section('pageKeywords', (isset($pageKeywords)) ? $pageKeywords : config('app.APP_NAME') ) @section('content')
@include('customer.layout.side-bar')
@csrf @method('PUT')
{{ __('customer/profile.labels.edit-text') . ' ' . __('customer/profile.labels.profile-text') }}
@if($errors->has('full_name')) {!! __('shared.error.show', ['errorMessage' => $errors->first('full_name')]) !!} @endif
@if($errors->has('phone')) {!! __('shared.error.show', ['errorMessage' => $errors->first('phone')]) !!} @endif
@if($errors->has('email')) {!! __('shared.error.show', ['errorMessage' => $errors->first('email')]) !!} @endif
{{ __('customer/profile.labels.cancel-btn') }}
@endsection