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