28 lines
1.0 KiB
PHP
28 lines
1.0 KiB
PHP
{{ html()->form('POST', route('coop.store'))->class('needs-validation')->attributes(['novalidate'])->open() }}
|
|
|
|
@isset($coop)
|
|
{{ html()->hidden('id', $coop->id) }}
|
|
@endisset
|
|
|
|
<div class="card-body">
|
|
<div class="row">
|
|
<div class="col-sm-12">
|
|
<div class="mb-3">
|
|
{{ 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') }}
|
|
</div>
|
|
|
|
<div class="mb-3">
|
|
{{ html()->label('Link')->for('link') }}
|
|
{{ html()->text('link')->value($coop->link ?? old('link'))->class('form-control')->placeholder('Enter Related Link') }}
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<x-form-buttons :href="route('coop.index')" :label="isset($coop) ? 'Update' : 'Create'" />
|
|
</div>
|
|
</div>
|
|
{{ html()->form()->close() }}
|