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