@extends('layouts/billing_layout') @section('title', '| Auto Billing System') @section('content')
Auto Billing System
{!! Form::open(['url' => '', 'role' => 'form', 'class' => 'form-horizontal form-groups', 'id' => 'salesForm']) !!}
{!! Form::label('billing_select', 'Billing Select :', [ 'class' => 'control-label', 'style' => 'margin-bottom: 10px;', ]) !!} {!! Form::select( 'billing_select', ['' => 'Select Any', 'service' => 'Service Charge', 'server' => 'Server Rent', 'others' => 'Others Rent'], null, [ 'class' => 'form-control', 'id' => 'billing_select', ], ) !!}

{{ $errors->error->first('billing_select') }}


{!! Form::close() !!}
@endsection