@extends('sendportal::layouts.app') @section('title', __('Campaign Template')) @section('heading') {{ __('Campaign Template') }} @stop @section('content') {!! Form::model($campaign, ['id' => 'form-template-selector', 'method' => 'put', 'route' => ['campaigns.template.update', $campaign->id]]) !!}
@foreach($templates as $template)

{{ $template->name }}

@if ($campaign->template_id == $template->id) {{ __('Selected') }} @else {{ __('Select') }} @endif
@include('sendportal::templates.partials.griditem')
@endforeach
{{ $templates->links() }} {{ __('Back') }} {!! Form::close() !!} @stop @push('js') @endpush