@extends('layouts.admin') @section('content')
{{ trans('global.create') }} {{ trans('cruds.vehicle.title_singular') }}
@csrf
@if($errors->has('name')) {{ $errors->first('name') }} @endif {{ trans('cruds.vehicle.fields.name_helper') }}
@if($errors->has('category')) {{ $errors->first('category') }} @endif {{ trans('cruds.vehicle.fields.category_helper') }}
@if($errors->has('type')) {{ $errors->first('type') }} @endif

@if($errors->has('subcategory')) {{ $errors->first('subcategory') }} @endif {{ trans('cruds.vehicle.fields.subcategory_helper') }}
@if($errors->has('photos')) {{ $errors->first('photos') }} @endif {{ trans('cruds.vehicle.fields.photos_helper') }}
@if($errors->has('vehicle_price')) {{ $errors->first('vehicle_price') }} @endif {{ trans('cruds.vehicle.fields.vehicle_price_helper') }}
@if($errors->has('state')) {{ $errors->first('state') }} @endif {{ trans('cruds.vehicle.fields.state_helper') }}
@if($errors->has('city')) {{ $errors->first('city') }} @endif {{ trans('cruds.vehicle.fields.city_helper') }}
@if($errors->has('pincode')) {{ $errors->first('pincode') }} @endif {{ trans('cruds.vehicle.fields.pincode_helper') }}
@if($errors->has('registration_no')) {{ $errors->first('registration_no') }} @endif {{ trans('cruds.vehicle.fields.registration_no_helper') }}
@if($errors->has('lat')) {{ $errors->first('lat') }} @endif {{ trans('cruds.vehicle.fields.lat_helper') }}
@if($errors->has('long')) {{ $errors->first('long') }} @endif {{ trans('cruds.vehicle.fields.long_helper') }}
@if($errors->has('location')) {{ $errors->first('location') }} @endif {{ trans('cruds.vehicle.fields.location_helper') }}
@if($errors->has('shops')) {{ $errors->first('shops') }} @endif {{ trans('cruds.vehicle.fields.shops_helper') }}
@if($errors->has('about_us')) {{ $errors->first('about_us') }} @endif {{ trans('cruds.vehicle.fields.about_us_helper') }}
@if($errors->has('status')) {{ $errors->first('status') }} @endif {{ trans('cruds.vehicle.fields.status_helper') }}
@endsection @section('scripts') @endsection