@extends('layouts.admin') @section('content') Edit Vehicle Home Edit Vehicle Edit Vehicle @csrf Name @error('name') {{ $message }} @enderror Image @foreach ($vehicle->ranges as $index => $rangs) @if ($index === 0) @else @endif From To Price @endforeach Minimum Hour @error('min_hour') {{ $message }} @enderror Amount Per Hour @error('amount_per_hour') {{ $message }} @enderror is_quotation ? 'checked' : '' }}> Is Quotation Allow? @foreach ($vehicle->locations as $index => $location) @if ($index === 0) @else @endif Location Price @endforeach @endsection