{{-- mainLayouts extends --}} @extends('layouts.contentLayoutMaster') {{-- Page title --}} @section('title', 'Car Company Edit') @section('vendor-style') @endsection @section('content')
@csrf @method('PUT')
Edit Car Company
Car Company *
@if ($errors->has('name'))
{{ $errors->first('name') }}
@endif
Comapny Image *
@if ($carCompany->image)
company image
@endif @if ($errors->has('image'))
{{ $errors->first('image') }}
@endif
Cancel
@endsection @section('vendor-script') @endsection @section('page-script') @endsection