{!! Form::label('reg_no', 'REG. NO.', ['class' => 'col-sm-2 control-label']) !!}
{!! Form::text('reg_no', null, ["placeholder" => "", "class" => "form-control border-form input-mask-registration", "autofocus"]) !!}
@include('includes.form_fields_validation_message', ['name' => 'reg_no'])
{!! Form::label('reg_date', 'Reg. Date', ['class' => 'col-sm-2 control-label']) !!}
{!! Form::text('reg_start_date', null, ["placeholder" => "2074-01-01", "class" => "input-sm form-control border-form input-mask-date date-picker", "data-date-format" => "yyyy-mm-dd"]) !!}
{!! Form::text('reg_end_date', null, ["placeholder" => "2074-01-01", "class" => "input-sm form-control border-form input-mask-date date-picker", "data-date-format" => "yyyy-mm-dd"]) !!}
@include('includes.form_fields_validation_message', ['name' => 'reg_start_date'])
@include('includes.form_fields_validation_message', ['name' => 'reg_end_date'])