@extends('admin.layouts.main') @section('title', 'Edit Customer') @section('menu', 'Customers') @section('content')
@csrf @method('PUT')
Edit: {{ $customer->first_name }} {{ $customer->last_name }}
@if ($errors->has('first_name')){{ $errors->first('first_name') }}@endif
@if ($errors->has('last_name')){{ $errors->first('last_name') }}@endif
@if ($errors->has('email')){{ $errors->first('email') }}@endif
@if ($errors->has('phone')){{ $errors->first('phone') }}@endif
@if ($errors->has('password')){{ $errors->first('password') }}@endif
@if ($errors->has('company')){{ $errors->first('company') }}@endif
@if ($errors->has('address_line_1')){{ $errors->first('address_line_1') }}@endif
@if ($errors->has('address_line_2')){{ $errors->first('address_line_2') }}@endif
@if ($errors->has('city')){{ $errors->first('city') }}@endif
@if ($errors->has('state')){{ $errors->first('state') }}@endif
@if ($errors->has('postal_code')){{ $errors->first('postal_code') }}@endif
@if ($errors->has('country_code')){{ $errors->first('country_code') }}@endif
@if ($errors->has('currency_code')){{ $errors->first('currency_code') }}@endif
Status
Comma-separated. Notifications sent to primary email + these addresses.
Comma-separated. SMS sent to primary phone + these numbers.
Publish
Back
@endsection