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