@extends('admin.layouts.master') @section('title', 'تعديل مركبة') @section('css') @endsection @section('content')
@if($errors->any())
    @foreach($errors->all() as $e)
  • {{ $e }}
  • @endforeach
@endif
@csrf @method('PUT') @include('admin.vehicles._form', ['vehicle' => $vehicle])
إلغاء
@endsection @section('js') @endsection