@extends('admin.layouts.master') @push('css') @endpush @section('page-title') @include('admin.components.page-title',['title' => __($page_title)]) @endsection @section('breadcrumb') @include('admin.components.breadcrumb',['breadcrumbs' => [ [ 'name' => __("Dashboard"), 'url' => setRoute("admin.dashboard"), ] ], 'active' => __($page_title)]) @endsection @section('content')
{{ __($page_title) }}
@csrf @method("PUT")
@include('admin.components.form.switcher', [ 'label' => __('Api ENV')."*", 'value' => old(' ',@$api->env), 'name' => "env", 'options' => [__('Production') => global_const()::ENV_PRODUCTION,__('Sandbox') => global_const()::ENV_SANDBOX] ])
@include('admin.components.button.form-btn',[ 'class' => "w-100 btn-loading", 'text' => __("update"), 'permission' => "admin.gift.card.api.update" ])
@endsection @push('script') @endpush