@extends('backpack::layout') @section('header')

{{ trans('backpack::crud.add') }} {{ $crud['entity_name'] }}

@endsection @section('content')
@if (!(isset($crud['view_table_permission']) && !$crud['view_table_permission'])) {{ trans('backpack::crud.back_to_all') }} {{ $crud['entity_name_plural'] }}

@endif {!! Form::open(array('url' => $crud['route'], 'method' => 'post')) !!}

{{ trans('backpack::crud.add_a_new') }} {{ $crud['entity_name'] }}

@if(view()->exists('vendor.backpack.crud.form_content')) @include('vendor.backpack.crud.form_content') @else @include('crud::form_content') @endif
{!! Form::close() !!}
@endsection