@if ($scrum_board->id) {!! Form::model($scrum_board, ['route' => ['admin.scrum-boards.update', [$scrum_board, 'view' => request()->get('view')]], 'method' => 'PUT']) !!} @else {!! Form::model($scrum_board, ['route' => ['admin.scrum-boards.store'], 'method' => 'POST']) !!} @endif
{{ Form::label('name', __('Name'), ['class' => 'col-form-label']) }} {!! Form::text('name', null, ['class' => 'form-control', 'placeholder' => __('Name')]) !!}
{{ Form::label('is_private', __('Is Private'), ['class' => 'col-form-label']) }} {!! Form::select('is_private', ['1' => 'Yes', '0' => 'No'], null, [ 'class' => 'form-select', 'data-kt-select2' => 'true' ]) !!}
{{ Form::label('description', __('Description'), ['class' => 'col-form-label']) }} {!! Form::textarea('description', null, ['class' => 'form-control', 'required'=> 'true', 'rows' => 3, 'placeholder' => __('Description')]) !!}
Pipelines
@forelse ($scrum_board->pipelines as $index=>$pipeline)
{{-- checkbox is default --}}
is_default)/>
CheckItems
@forelse($pipeline->checkItems as $checkItem)
@empty
@endforelse
@empty
{{-- checkbox is default --}}
CheckItems
@endforelse
{!! Form::close() !!}