@extends('layouts.master') @php $isEdit = isset($customer); $action = $isEdit ? route('customers.update', $customer) : route('customers.store'); $method = $isEdit ? 'PUT' : 'POST'; @endphp @section('title', $isEdit ? 'تعديل عميل' : 'إضافة عميل') @section('pages') {{ __('dashboard.home') }} @endsection @section('content')