{{ html()->form('POST', route('programLevel.store'))->class('needs-validation')->attributes(['novalidate'])->open() }} @isset($programLevel) {{ html()->hidden('id', $programLevel->id) }} @endisset
{{ html()->label('Title')->for('title') }} {{ html()->span('*')->class('text-danger') }} {{ html()->text('title')->value($programLevel->title ?? old('title'))->class('form-control')->placeholder('Enter Title')->required() }} {{ html()->div('Please enter a title.')->class('invalid-feedback') }}
{{ html()->label('Description')->for('description') }} {{ html()->textarea('description')->value($programLevel->description ?? old('description'))->class('form-control')->rows(5)->placeholder('Enter Description') }}
{{ html()->form()->close() }}