@extends('layouts.app') @section('title', __('tms::lang.add').' — '.__('tms::lang.routes')) @section('content') @include('tms::layouts.nav')

@lang('tms::lang.add') — @lang('tms::lang.routes')

{!! Form::open(['url'=>action([\Modules\Tms\Http\Controllers\RouteController::class,'store']),'method'=>'post']) !!}
{!! Form::label('route_date', __('tms::lang.route_date').':*') !!}{!! Form::date('route_date', date('Y-m-d'), ['class'=>'form-control','required']) !!}
{!! Form::label('driver_id', __('tms::lang.driver').':') !!}{!! Form::select('driver_id',$drivers,null,['class'=>'form-control select2','placeholder'=>__('tms::lang.select'),'style'=>'width:100%']) !!}
{!! Form::label('vehicle_id', __('tms::lang.vehicle').':') !!}{!! Form::select('vehicle_id',$vehicles,null,['class'=>'form-control select2','placeholder'=>__('tms::lang.select'),'style'=>'width:100%']) !!}
{!! Form::label('origin_location_id', __('tms::lang.origin').':') !!}{!! Form::select('origin_location_id',$locations,null,['class'=>'form-control select2','placeholder'=>__('tms::lang.select'),'style'=>'width:100%']) !!}
{!! Form::label('origin_latitude', __('tms::lang.latitude').':') !!}{!! Form::text('origin_latitude',null,['class'=>'form-control']) !!}
{!! Form::label('origin_longitude', __('tms::lang.longitude').':') !!}{!! Form::text('origin_longitude',null,['class'=>'form-control']) !!}
{!! Form::label('shipment_ids', __('tms::lang.shipments').':') !!}
{!! Form::label('notes', __('tms::lang.notes').':') !!}{!! Form::textarea('notes',null,['class'=>'form-control','rows'=>2]) !!}
{!! Form::close() !!}
@endsection