@extends('layouts.app') @push('css_lib') {{--dropzone--}} @endpush @section('title',trans('lang.vehicle_table')) @section('content') @include('flash::message') @include('adminlte-templates::common.errors')
{!! Form::open(['route' => ['vehicle.update', $editvehicle[0]->id], 'method' => 'patch']) !!}
{!! Form::label('country', 'Country Name', ['class' => 'col-5 control-label text-right']) !!}
{!! Form::label('store_id', trans("lang.store_name"), ['class' => 'col-5 control-label text-right']) !!}
{!! Form::label('vehicle_name', trans("lang.vehicle_name"), ['class' => 'col-5 control-label text-right']) !!}
{!! Form::text('vehicle_name',$editvehicle[0]->vehicle_name, ['class' => 'form-control','placeholder'=> trans("lang.vehicle_name_placeholder"),"required"=>"true"]) !!}
{{ trans("lang.vehicle_name_help") }}
{!! Form::label('vehicle_no', trans("lang.vehicle_no"), ['class' => 'col-5 control-label text-right']) !!}
{!! Form::text('vehicle_no', $editvehicle[0]->vehicle_no, ['class' => 'form-control','placeholder'=> trans("lang.vehicle_no_placeholder"),"required"=>"true"]) !!}
{{ trans("lang.vehicle_no_help") }}
{!! Form::label('vehicle_model', trans("lang.vehicle_model"), ['class' => 'col-5 control-label text-right']) !!}
{!! Form::text('vehicle_model', $editvehicle[0]->vehicle_model, ['class' => 'form-control','placeholder'=> trans("lang.vehicle_model_placeholder")]) !!}
{{ trans("lang.vehicle_model_help") }}
{!! Form::label('vehicle_chasis_no', trans("lang.vehicle_chasis_no"), ['class' => 'col-5 control-label text-right']) !!}
{!! Form::text('vehicle_chasis_no', $editvehicle[0]->vehicle_chasis_no, ['class' => 'form-control','placeholder'=> trans("lang.vehicle_chasis_no_placeholder")]) !!}
{{ trans("lang.vehicle_chasis_no_help") }}
{!! Form::label('vehicle_engine_no', trans("lang.vehicle_engine_no"), ['class' => 'col-5 control-label text-right']) !!}
{!! Form::text('vehicle_engine_no', $editvehicle[0]->vehicle_engine_no, ['class' => 'form-control','placeholder'=> trans("lang.vehicle_engine_no_placeholder")]) !!}
{{ trans("lang.vehicle_engine_no_help") }}
{!! Form::label('vehicle_description', trans("lang.vehicle_description"), ['class' => 'col-5 control-label text-right']) !!}
{!! Form::textarea('vehicle_description', $editvehicle[0]->vehicle_description, ['class' => 'form-control','placeholder'=> trans("lang.vehicle_description_placeholder")]) !!}
{{ trans("lang.vehicle_description_help") }}
{!! Form::label('status', trans("lang.status"), ['class' => 'col-5 control-label text-right']) !!}
{{ trans("lang.status") }}
{{trans('lang.cancel')}}
{!! Form::close() !!}
@include('layouts.media_modal',['collection'=>null]) @endsection @push('scripts_lib') {{--dropzone--}} @endpush