@extends('dashboard')

@section('page_title')
    Create $MODEL_NAME_CAMEL$
@stop

@section('content')
<div class="container">

    @include('common.errors')

    {!! Form::open(['route' => 'admin.$MODEL_NAME_PLURAL_CAMEL$.store']) !!}

        @include('$MODULE_NAME$::$MODEL_NAME$.form')

    {!! Form::close() !!}
</div>
@endsection