@extends('Frontend.Layouts.modal') @section('title') {{ trans('front.checklist') }} @stop @section('body') {!! Form::open(['route' => ['checklists.store', $service_id], 'method' => 'POST']) !!}
{!! Form::label('template_id', trans('validation.attributes.template').':') !!} {!! Form::select('template_id', $templates, null, ['class' => 'form-control']) !!}
{!! Form::close() !!} @stop