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

%%crudNamePluralCap%%

Create a new %%crudNameSingular%%

@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif {!! Form::open(['url' => 'admin/%%crudNamePlural%%']) !!} %%formFields%%
@lang('button.cancel')
{!! Form::close() !!}
@stop