@extends('layout.app') @section('title', 'Truck Condition Entry') @push('header_script') @endpush @section('content')
Truck Condition Details
{!! Form::open(['route' => 'truck-condition.store', 'method' => 'POST', 'files' => true, 'class' => 'row g-3']) !!}
{!! Form::select('vehicle_id', ['' => '-- Select Vehicle --'] + $vehicles, null, [ 'class' => 'form-control select2', 'id' => 'vehicle_id', 'required' ]) !!}
{!! Form::select('driver_id', ['' => '-- Select Driver --'] + $drivers, null, [ 'class' => 'form-control select2', 'id' => 'driver_id', 'required' ]) !!}
You can select multiple images at once.
{!! Form::close() !!}
@endsection @push('footer_script') @endpush