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

Edit Vehicle

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

@if ($vehicle->image)

@endif
Back
@endsection