@extends('layouts.staff') @section('content') {{-- GREY BACKGROUND RECTANGLE --}}
{{-- === 1. SUCCESS MESSAGE === --}} @if(session('success'))

Success

{{ session('success') }}

@endif {{-- === 2. ERROR MESSAGE === --}} @if($errors->any())

Unable to Save Vehicle

Please check the following errors:

    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
{{-- CREATE FORM --}}
@csrf {{-- MAIN WHITE CARD --}}
{{-- === LEFT SIDE: VISUALS & SETTINGS === --}}

Register
Fleet.

Upload vehicle image and select category.

{{-- 1. Main Image Upload --}}

{{-- 2. Category --}}
{{-- 3. Classification --}}
{{-- 4. Hourly Rates --}}

Hourly Rates (RM) *

@foreach([1, 3, 5, 7, 9, 12, 24] as $h)
{{-- Label --}}
{{ $h }}H
{{-- Input --}}
@endforeach
{{-- Info Filler --}}

Fleet Standard

Rates are calculated automatically based on base price, but you can override specific tiers here.

{{-- === RIGHT SIDE: FORM DATA === --}}
{{-- 1. Technical Profile --}}

Technical Profile

{{-- Valid: A-Z, 0-9, space. Invalid: Special chars --}}
{{-- Optional Fields --}}
{{-- 2. Ownership --}}

Ownership

{{-- Valid: Letters, spaces, dots. Invalid: Numbers, special chars --}}
{{-- Valid: Numbers, +, -, space. Invalid: Letters --}}
{{-- Valid: Numbers, - only. --}}
{{-- === DOCUMENTS WITH DRAG-DROP (Optional) === --}}
{{-- 1. Road Tax --}}

Road Tax

{{-- 2. Grant --}}

Grant

{{-- 3. Insurance --}}

Insurance

{{-- SUBMIT --}}
@endsection