@extends('admin.partials.layout') @section('css') @endsection @section('content')

Edit Customer

Edit Customer Form

@csrf @method('PUT')

Customer personal Info


@if($errors->has('company_name'))

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

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

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

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

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

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

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

@endif

Login Details


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

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

@endif
Leave It Blank For Default Password. @if($errors->has('password'))

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

@endif
@if(Auth::user()->permission('customers.edit'))
@endif
@endsection @section('js') @endsection