@extends('layouts/master') @section('title') Create API Key - Technic Solder @stop @section('content')

API Key Management


Add API Key
@if ($errors->all())
@foreach ($errors->all() as $error) {{ $error }}
@endforeach
@endif
{!! Form::open() !!} {!! Form::hidden("add-key", 1) !!}
{!! Form::submit('Add Key', ['class' => 'btn btn-success']) !!} {!! Html::link('key/list/', 'Go Back', ['class' => 'btn btn-primary']) !!} {!! Form::close() !!}
@endsection