@extends('layouts.simple.master')
@if (isset($user))
@section('title', 'Update Customer')
@else
@section('title', 'Create Customer')
@endif
@section('css')
@endsection
@section('style')
@endsection
@section('breadcrumb-title')
@if (isset($user))
Edit Customer
@else
Create Customer
@endif
@endsection
@section('breadcrumb-items')
@if (isset($user))
Customers
Edit Customer
@else
Customers
Create Customer
@endif
@endsection
@section('content')
@if (session('success'))
{{ session('success') }}
@endif
@if ($errors->any())
@foreach ($errors->all() as $error)
- {{ $error }}
@endforeach
@endif
@php
$languages = app('bmf')->getLanguages();
$timezones = app('bmf')->getTimeZones();
@endphp
@endsection