@extends('backend.layouts.split')
@section('title', 'Create Api Client' . ' '.html_entity_decode("—", ENT_QUOTES, 'UTF-8').' ' . app_name())
@section('content')
{{ html()->form('POST', route('admin.auth.api-client.store'))->class('form-actions top')->open() }}
Api Client
@lang('Create')
{{ html()->label('Name')->class('control-label')->for('name') }}
{{ html()->text('name')
->class('form-control')
->placeholder('Client Name')
->attribute('maxlength', 191)
->required()
->autofocus() }}
{{ html()->label('Rate Limit (requests per minute)')->class('control-label')->for('rate_limit') }}
{{ html()->number('rate_limit')
->class('form-control')
->placeholder('60')
->required()
->value('60')
->attribute('min', 1)
}}
{{ form_cancel(route('admin.auth.api-client.index'), __('buttons.general.cancel')) }}
{{ form_submit(__('buttons.general.crud.create')) }}
{{ html()->form()->close() }}
@endsection