@extends('admin/layouts/default') {{-- Page title --}} @section('title') Create New transaction_type @parent @stop {{-- Page content --}} @section('content')

Transaction Types

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')
{!! Form::close() !!}
@stop