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

Payment Types

Create a new payment_type

@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif {!! Form::open(['url' => 'admin/payment_types']) !!}
{!! Form::label('name', 'Name: ') !!} {!! Form::text('name', null, ['class' => 'form-control']) !!}
@lang('button.cancel')
{!! Form::close() !!}
@stop