{{ Form::label('sale_channel_id', __('shop.sale_channels.name')) }} @include('components.form.select', [ 'name' => 'sale_channel_id', 'list' => $sale_channels ?? [], 'value' => $delivery['sale_channel_id'] ?? null, 'with_empty' => '', 'class' => 'select2' ])
{{ Form::label('active', __('Actif')) }}
@include("components.form.toggle", [ 'name' => 'active', 'value' => $delivery['active'] ?? false, 'on' => __('active'), 'off' => __('inactive') ])
{{ Form::label('is_public', __('Type')) }} @include('components.form.toggle', [ 'name' => 'is_public', 'value' => $delivery['is_public'] ?? false, 'on' => __('public'), 'off' => __('administré') ])
{{ Form::label('at_house', __('Défaut')) }} @include('components.form.checkboxes.icheck', [ 'name' => 'at_house', 'value' => $delivery['at_house'] ?? null ])
{{ Form::label('name', __('Nom')) }} @include('components.form.input', [ 'name' => 'name', 'value' => $delivery['name'] ?? null, 'required' => true ])
{{ Form::label('', __('Description')) }}
@include('components.address', ['with_country' => false])
{{ Form::label('event_date_begin', __('Date de début')) }} @include('components.form.datepicker', ['name' => 'event_date_begin', 'value' => $delivery['event_date_begin'] ?? null])
{{ Form::label('event_date_end', __('Date de fin')) }} @include('components.form.datepicker', ['name' => 'event_date_end', 'value' => $delivery['event_date_end'] ?? null])
@include('components.save') @include('load.form.select2') @include('load.form.save') @push('js') @endpush