@extends('admin/layouts/default') {{-- Page title --}} @section('title') Create New transaction_type @parent @stop {{-- Page content --}} @section('content') Transaction Types Dashboard transaction_types Create New transaction_type Create a new transaction_type @if ($errors->any()) @foreach ($errors->all() as $error) {{ $error }} @endforeach @endif {!! Form::open(['url' => 'admin/transaction_types']) !!} {!! Form::label('name', 'Name: ') !!} {!! Form::text('name', null, ['class' => 'form-control']) !!} @lang('button.cancel') @lang('button.save') {!! Form::close() !!} @stop