Troubleshoot Section
The section is designed to troubleshoot the app, not fore general purpose user.
{{ Form::label( 'dev_mode', 'Development Mode',['class' => 'col-12 control-label']) }}
{{ Form::label( 'create_link', 'Create Link',['class' => 'col-12 control-label']) }}
{{ Form::label('from_path', 'Original Link', ['class' => 'col-lg-12 control-label required']) }}
{{ Form::text('from_path', storage_path(), ['class' => 'form-control box-size', 'placeholder' =>'Original Path', 'required' => 'required']) }}
{{ Form::label('to_path', 'Target Link Path', ['class' => 'col-lg-12 control-label required']) }}
{{ Form::text('to_path', public_path().DIRECTORY_SEPARATOR.'storage', ['class' => 'form-control box-size', 'placeholder' =>'Target Path', 'required' => 'required']) }}
{{ Form::submit(trans('buttons.general.crud.update'), ['class' => 'm-1 btn btn-info btn-md']) }}