@extends('layout.app') @section('title', 'Pending Freight - Selection & Calculation') @push('header_script') @endpush @section('content')
{!! Form::select('party_id', ['' => '--Select--'] + $party, old('party_id'), [ 'class' => 'form-control select2', 'id' => 'party_id', ]) !!}
{{ $errors->first('party_id') }}
{!! Form::select('vehicle_id', ['' => '--Select--'] + $vehicle, old('vehicle_id'), [ 'class' => 'form-control select2', 'id' => 'vehicle_id', ]) !!}
{{-- Submit --}}
@endsection @push('footer_script') @endpush