@extends('admin.master') @section('title') Fuel Type @endsection @section('content')

Fuel Type

# Fuel Type Name Slug Created At Action
Add/Update Fuel Type
{!! Form::open(['id' => 'fuelTypeForm']) !!} {!! Form::hidden('id', null, ['id' => 'fuelTypeId']) !!}
{!! Form::label('fuel_type_name', 'Fuel Type Name', ['class' => 'form-label']) !!} {!! Form::text('fuel_type_name', null, [ 'class' => 'form-control form-control-sm', 'id' => 'fuelTypeName', 'required' => true, 'placeholder' => 'Enter Fuel Type Name', ]) !!}
{!! Form::close() !!}
@endsection @section('javascript') @endsection