@extends ('backend.layouts.app') @section ('title', __('api::labels.backend.api.management') . ' | ' . __('api::labels.backend.api.edit')) @section('breadcrumb-links') @include('api::includes.breadcrumb-links') @endsection @push('after-styles') @endpush @section('content') {{ html()->modelForm($api, 'PATCH', route('admin.api.update', $api->id))->class('form-horizontal')->open() }}

{{ __('api::labels.backend.api.management') }} {{ __('api::labels.backend.api.edit') }}


{{ html()->label(__('api::labels.backend.api.table.name'))->class('col-md-2 form-control-label')->for('name') }}
{{ html()->text('name') ->class('form-control') ->placeholder(__('api::labels.backend.api.table.name')) ->attribute('maxlength', 191) ->required() }}
{{ html()->label(__('api::labels.backend.api.table.description'))->class('col-md-2 form-control-label')->for('description') }}
{{ html()->textarea('description') ->class('form-control') ->placeholder(__('api::labels.backend.api.table.description')) ->required() }}
{{ html()->closeModelForm() }} @endsection @push('after-scripts') @endpush