@include('admin.crud.form', [ 'action' => route('admin.live-class-integrations.store'), 'formId' => 'add-live-class-integration-form', 'submitText' => 'Save Live Class Integration', 'class' => 'ajax-crud-form', 'redirect' => route('admin.live-class-integrations.index'), 'fields' => [ [ 'type' => 'text', 'name' => 'title', 'id' => 'title', 'label' => 'Title', 'placeholder' => 'Enter Title', 'required' => true, 'col' => 6 ], [ 'type' => 'select', 'name' => 'provider', 'id' => 'provider', 'label' => 'Provider', 'required' => true, 'options' => ['zoom' => 'Zoom'], 'col' => 6 ], [ 'type' => 'text', 'name' => 'api_key', 'id' => 'api_key', 'label' => 'Api Key', 'placeholder' => 'Enter Api key', 'col' => 6 ], [ 'type' => 'text', 'name' => 'api_secret', 'id' => 'api_secret', 'label' => 'Api Secret', 'placeholder' => 'Enter Api secret', 'col' => 6 ], [ 'type' => 'select', 'name' => 'status', 'id' => 'status', 'label' => 'Status', 'required' => true, 'options' => [1 => 'Published', 0 => 'Draft'], 'col' => 6 ], ] ])