@extends('layout.app') @section('title','Create Freight Bill') @push('header_script') @endpush @section('content')
{!! Form::open(['route' => ['freight-billing.store'], 'onsubmit'=>'BtnSubmit.disabled = true','class'=>'row g-3 needs-validation', 'method' => 'post', 'autocomplete'=>'off','files'=>true]) !!}
{!! Form::select('party_id', [''=>'--Select--',]+$party, old('party_id'), ['class'=>'form-control select2','id'=>'party_id','required']) !!}
{{$errors->first('party_id')}}
{!! Form::select('vehicle_id', [''=>'--Select--',]+$vehicle, old('vehicle_id'), ['class'=>'form-control select2','id'=>'vehicle_id']) !!}
{!! Form::close() !!}
@endsection @push('footer_script') @endpush