form('POST', route('coop.store'))->class('needs-validation')->attributes(['novalidate'])->open()); ?> hidden('id', $coop->id)); ?>
label('Title')->for('title')); ?> span('*')->class('text-danger')); ?> text('title')->value($coop->title ?? old('title'))->class('form-control')->placeholder('Enter Title')->required()); ?> div('Please enter a title.')->class('invalid-feedback')); ?>
label('Link')->for('link')); ?> text('link')->value($coop->link ?? old('link'))->class('form-control')->placeholder('Enter Related Link')); ?>
'components.form-buttons','data' => ['href' => route('coop.index'),'label' => isset($coop) ? 'Update' : 'Create']] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?> withName('form-buttons'); ?> shouldRender()): ?> startComponent($component->resolveView(), $component->data()); ?> except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?> withAttributes(['href' => \Illuminate\View\Compilers\BladeCompiler::sanitizeComponentAttribute(route('coop.index')),'label' => \Illuminate\View\Compilers\BladeCompiler::sanitizeComponentAttribute(isset($coop) ? 'Update' : 'Create')]); ?> renderComponent(); ?>
form()->close()); ?>