@extends('layouts.app') @section('content')
Update Vehicle
@csrf
@if ($errors->has('plate'))
{{ $errors->first('plate') }}
@endif
@if ($errors->has('cr_number'))
{{ $errors->first('cr_number') }}
@endif
@if ($errors->has('provider'))
{{ $errors->first('provider') }}
@endif
@if ($errors->has('category'))
{{ $errors->first('category') }}
@endif
@if ($errors->has('product'))
{{ $errors->first('product') }}
@endif
@if ($errors->has('effectivity'))
{{ $errors->first('effectivity') }}
@endif
@if ($errors->has('expiration'))
{{ $errors->first('expiration') }}
@endif
@if ($errors->has('status'))
{{ $errors->first('status') }}
@endif
@section('script') @endsection @endsection