@extends('layouts.modules') @section('title', trans('modules.api_key')) @section('content')
{!! Form::open([ 'route' => 'apps.api-key.store', 'id' => 'form-app', '@submit.prevent' => 'onSubmit', 'files' => true, 'role' => 'form', 'class' => 'form-loading-button' ]) !!}
{!! Form::label('api_key', trans('modules.api_key'), ['class' => 'form-control-label']) !!}
{!! Form::text('api_key', setting('apps.api_key', ''), ['class' => 'form-control', 'required' => 'required', 'placeholder' => trans('general.form.enter', ['field' => trans('modules.api_key')])]) !!}
{!! $errors->first('api_key', '

:message

') !!}

{!! trans('modules.api_key_link') !!}

{!! Form::close() !!}
@endsection @push('scripts_start') @endpush