@extends('Frontend.Layouts.modal')
@section('title')
{{ trans('front.checklist_template') }}
@stop
@section('body')
{!! Form::open(['route' => 'checklist_template.store', 'method' => 'POST']) !!}
{!! Form::label('name', trans('validation.attributes.name').':') !!}
{!! Form::text('name', null, ['class' => 'form-control']) !!}
{!! Form::label('type', trans('validation.attributes.type').':') !!}
{!! Form::select('type', $types, null, ['class' => 'form-control']) !!}
@include ('Frontend.ChecklistTemplates.rows')
{!! Form::close() !!}
@stop