MVP Backoffice
Dashboard
Customers
Appointments
Invoices
{{ auth()->user()->first_name }} {{ auth()->user()->last_name }}
@csrf
Logout
{{ isset($customer) ? 'Edit' : 'Add' }} Customer
@if ($errors->any())
@foreach ($errors->all() as $error)
{{ $error }}
@endforeach
@endif
@csrf @if (isset($customer)) @method('PUT') @endif
First Name *
Last Name *
Company Name
Phone
Email
Service Address
Address
City
State
ZIP
Notes
{{ old('notes', $customer->notes ?? '') }}
@if (isset($customer))
Settings
do_not_service) ? 'checked' : '' }} class="rounded border-gray-300 text-blue-600 focus:ring-blue-500">
Do Not Service
auto_service_reminder) ? 'checked' : '' }} class="rounded border-gray-300 text-blue-600 focus:ring-blue-500">
Auto Service Reminder
include_pictures_on_invoices) ? 'checked' : '' }} class="rounded border-gray-300 text-blue-600 focus:ring-blue-500">
Include Pictures on Invoices
include_notes_on_invoices) ? 'checked' : '' }} class="rounded border-gray-300 text-blue-600 focus:ring-blue-500">
Include Notes on Invoices
@endif
Cancel
{{ isset($customer) ? 'Update' : 'Create' }} Customer