@include('admin.crud.form', [ 'action' => route('admin.live-class-accounts.store'), 'formId' => 'add-live-class-account-form', 'submitText' => 'Save Live Class Account', 'class' => 'ajax-crud-form', 'redirect' => route('admin.live-class-accounts.index'), 'fields' => [ [ 'type' => 'text', 'name' => 'title', 'id' => 'title', 'label' => 'Title', 'placeholder' => 'Enter Title', 'required' => true, 'col' => 6 ], [ 'type' => 'select', 'name' => 'integration_id', 'id' => 'provider', 'label' => 'Integrations', 'required' => true, 'options' => $integrations, 'col' => 6 ], [ 'type' => 'text', 'name' => 'account_id', 'id' => 'account_id', 'label' => 'Account ID', 'placeholder' => 'Enter Account ID', 'col' => 6 ], [ 'type' => 'text', 'name' => 'account_key', 'id' => 'account_key', 'label' => 'Account Key', 'placeholder' => 'Enter Account key', 'col' => 6 ], [ 'type' => 'select', 'name' => 'status', 'id' => 'status', 'label' => 'Status', 'required' => true, 'options' => [1 => 'Published', 0 => 'Draft'], 'col' => 6 ], ] ])