@extends('layouts.app') @section('title', 'Add New Vehicle') @section('content_header_title', 'Vehicles') @section('content_header_subtitle', 'Add New Vehicle') @section('content_body')

Add New Vehicle

{{-- Show General Validation Errors --}} @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf
Back
@endsection