@extends('../../master_layout/website_master') @section('title') {{env('APP_NAME')}} :: My Account @endsection @section('heading')
Back

My Account - Edit

@php $breadcrumb = array( array('title'=>'My Account', 'url'=>route('account')), array('title'=>'Edit', 'url'=>'', 'active'=>'1') ); @endphp @include('website_view.component.breadcrumb', compact("breadcrumb"))
@endsection @section('content')

My Account - Edit

@include('website_view.component.account-navigation')
@if (session('errors'))
@foreach($errors->all() as $message)
  • {{$message}}
  • @endforeach
    @endif
    @if (session('message'))
    @endif
    @csrf
    Allowed file types are JPEG, JPG and Maximum size of 1MB
    @if($account->type=="C") @endif
    @if($account->type=="C")
      @foreach($services as $service)
    • @endforeach
    @endif
    @endsection @section('custom_js') @endsection