I\'m using the laravel framework for a project, and I\'m implementing a basic form page, where I require certain values to be required, something that can be do
Radio required featured works with laravel 5.7 version
@foreach($status_list as $status_key => $status)
{!! Form::radio('status', $status_key, false, array('id'=>'status_'.$status_key, 'required'=>'required' )); !!}
{!! Form::label('status_'.$status_key, $status ) !!}
@endforeach
I hope, this will help you also. :)