@extends('layouts.app') @section('content')

{{trans('lang.rental_vehicle_type')}}

@if($errors->any())
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf @method("PUT")
{{trans('lang.edit_rental_vehicle_type')}}
@if (file_exists(public_path('assets/images/type_vehicle_rental'.'/'.$type->image)) && !empty($type->image)) image @else image @endif
@if($type->status=='yes') @else @endif
{{ trans('lang.cancel')}}
@endsection @section('scripts') @endsection