@php $input='title'; @endphp
{!! Form::rawLabel($input,trans('admin.Name')."*",['class' => 'col-md-3 control-label']) !!}
{!! Form::text($input,null,['class'=>'form-control']) !!} @foreach($errors->get($input) as $message) {{ $message }} @endforeach
@php $input='start_date'; @endphp
{!! Form::rawLabel($input,trans('admin.Start Date')."*",['class' => 'col-md-3 control-label']) !!}
{!! Form::date($input,null,['class'=>'form-control']) !!} @foreach($errors->get($input) as $message) {{ $message }} @endforeach
@php $input='end_date'; @endphp
{!! Form::rawLabel($input,trans('admin.End Date')."*",['class' => 'col-md-3 control-label']) !!}
{!! Form::date($input,null,['class'=>'form-control']) !!} @foreach($errors->get($input) as $message) {{ $message }} @endforeach
@php $input='value_amount'; @endphp
{!! Form::rawLabel($input,trans('admin.Value')."*",['class' => 'col-md-3 control-label']) !!}
{!! Form::number($input,null,['class'=>'form-control']) !!} @foreach($errors->get($input) as $message) {{ $message }} @endforeach
@php $input='number_of_rids'; @endphp
{!! Form::rawLabel($input,trans('admin.No Of Rids')."*",['class' => 'col-md-3 control-label']) !!}
{!! Form::number($input,null,['class'=>'form-control']) !!} @foreach($errors->get($input) as $message) {{ $message }} @endforeach
@php $input='max_value'; @endphp
{!! Form::rawLabel($input,trans('admin.Max Value')."*",['class' => 'col-md-3 control-label']) !!}
{!! Form::number($input,null,['class'=>'form-control']) !!} @foreach($errors->get($input) as $message) {{ $message }} @endforeach
@php $input='is_fixed_value_type'; @endphp
{!! Form::rawLabel($input,trans('admin.Is Fixed'),['class' => 'col-md-2 control-label']) !!}
@if(ACL::can('publish-'.$module)) @php $input='published'; @endphp
{!! Form::rawLabel($input,trans('admin.Published'),['class' => 'col-md-2 control-label']) !!}
@endif