@extends('admin.layouts.app') @section('title', 'Vehicle Category') @section('content')

{{ __('Vehicle Category') }}

Edit Vehicle Category

@csrf @method('PUT')
@include('admin.partials.form-errors', array('field' => 'name'))

Vehicle Categorys

@foreach($modelCategories as $c) @endforeach
Name
{{$c->name}}
@endsection