24 lines
755 B
PHP
24 lines
755 B
PHP
{!! Form::open( array('route' => 'settings.create','method' => 'post', 'id' => 'form-add-setting' ) ) !!}
|
|
|
|
{!! Form::label( 'setting_name', 'Setting Name:' ) !!}
|
|
{!! Form::text( 'setting_name', '', array(
|
|
'id' => 'setting_name',
|
|
'placeholder' => 'Enter Setting Name',
|
|
'maxlength' => 20,
|
|
'required' => true,
|
|
) ) !!}
|
|
{!! Form::label( 'setting_value', 'Setting Value:' ) !!}
|
|
{!! Form::text( 'setting_value', '', array(
|
|
'id' => 'setting_value',
|
|
'placeholder' => 'Enter Setting Value',
|
|
'maxlength' => 255,
|
|
'required' => true,
|
|
) ) !!}
|
|
|
|
{!! Form::submit( 'Add Setting', array(
|
|
'id' => 'btn-add-setting',
|
|
) ) !!}
|
|
|
|
{!! Form::close() !!}
|
|
|