You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
105 lines
5.5 KiB
PHTML
105 lines
5.5 KiB
PHTML
@extends('layouts.app')
|
|
|
|
@section('content')
|
|
<div class="container">
|
|
<div class="row justify-content-center">
|
|
<div class="col-md-8">
|
|
<div class="card">
|
|
<div class="card-header">Create Customer</div>
|
|
|
|
<div class="card-body">
|
|
@if (session('status'))
|
|
<div class="alert alert-success" role="alert">
|
|
{{ session('status') }}
|
|
</div>
|
|
@endif
|
|
|
|
<form action="{{route('customers.store')}}" method="post">
|
|
@csrf
|
|
|
|
<div class="row mb-3">
|
|
<label for="company_name" class="col-md-4 col-form-label text-md-end">Company Name</label>
|
|
|
|
<div class="col-md-6">
|
|
<input id="company_name" type="text" class="form-control @error('company_name') is-invalid @enderror" name="company_name" value="{{ old('company_name') }}" required autocomplete="company_name" autofocus>
|
|
|
|
@error('company_name')
|
|
<span class="invalid-feedback" role="alert">
|
|
<strong>{{ $message }}</strong>
|
|
</span>
|
|
@enderror
|
|
</div>
|
|
</div>
|
|
|
|
<div class="row mb-3">
|
|
<label for="internal_name" class="col-md-4 col-form-label text-md-end">Internal Name</label>
|
|
|
|
<div class="col-md-6">
|
|
<input id="internal_name" type="text" class="form-control @error('internal_name') is-invalid @enderror" name="internal_name" value="{{ old('internal_name') }}" required autocomplete="internal_name" autofocus>
|
|
|
|
@error('internal_name')
|
|
<span class="invalid-feedback" role="alert">
|
|
<strong>{{ $message }}</strong>
|
|
</span>
|
|
@enderror
|
|
</div>
|
|
</div>
|
|
|
|
<div class="row mb-3">
|
|
<label for="shipping_address" class="col-md-4 col-form-label text-md-end">Shipping Address</label>
|
|
|
|
<div class="col-md-6">
|
|
<input id="shipping_address" type="text" class="form-control @error('shipping_address') is-invalid @enderror" name="shipping_address" value="{{ old('shipping_address') }}" required autocomplete="shipping_address" autofocus>
|
|
|
|
@error('shipping_address')
|
|
<span class="invalid-feedback" role="alert">
|
|
<strong>{{ $message }}</strong>
|
|
</span>
|
|
@enderror
|
|
</div>
|
|
</div>
|
|
|
|
<div class="row mb-3">
|
|
<label for="billing_address" class="col-md-4 col-form-label text-md-end">Billing Address</label>
|
|
|
|
<div class="col-md-6">
|
|
<input id="billing_address" type="text" class="form-control @error('billing_address') is-invalid @enderror" name="billing_address" value="{{ old('billing_address') }}" required autocomplete="billing_address" autofocus>
|
|
|
|
@error('billing_address')
|
|
<span class="invalid-feedback" role="alert">
|
|
<strong>{{ $message }}</strong>
|
|
</span>
|
|
@enderror
|
|
</div>
|
|
</div>
|
|
|
|
<div class="row mb-3">
|
|
<label for="phone" class="col-md-4 col-form-label text-md-end">Phone number</label>
|
|
|
|
<div class="col-md-6">
|
|
<input id="phone" type="text" class="form-control @error('phone') is-invalid @enderror" name="phone" value="{{ old('phone') }}" required autocomplete="phone" autofocus>
|
|
|
|
@error('phone')
|
|
<span class="invalid-feedback" role="alert">
|
|
<strong>{{ $message }}</strong>
|
|
</span>
|
|
@enderror
|
|
</div>
|
|
</div>
|
|
|
|
<div class="row mb-4">
|
|
<div class="col-md-4"></div>
|
|
<div class="col-md-6">
|
|
<button type="submit" class="btn btn-primary">Create customer</button>
|
|
</div>
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@endsection
|