@extends('layouts.modules') @section('title', trans('modules.title')) @section('content')
{!! Form::open(['url' => 'modules/token', 'files' => true, 'role' => 'form']) !!}
{!! Form::label('sale_price', trans('modules.api_token'), ['class' => 'control-label']) !!}
{!! Form::text('api_token', null, ['class' => 'form-control', 'required' => 'required', 'placeholder' => trans('general.form.enter', ['field' => trans('modules.api_token')])]) !!}
{!! $errors->first('api_token', '

:message

') !!}

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

{!! Form::close() !!}
@endsection