@extends('layouts.default_module') @section('module_name') USERS TEMPLATES @stop @section('table') User Template Name Html Content Message Invitation Background Image @foreach($user_templates as $c) {!! $c->User->name !!} {!! $c->name !!} {!! $c->html_content !!} {!! $c->message!!} {!! $c->invitation!!} {!! $c->background_img !!} {!! Form::open(['method' => 'POST', 'route' => ['user_templates.delete', $c->id]]) !!} Delete {!! Form::close() !!} @endforeach @stop @section('pagination') {!! $user_templates->render() !!}
{!! Form::open(['method' => 'get', 'route' => ['dashboard']]) !!} {!! Form::submit('Cancel', ['class' => 'btn btn-default btn-block btn-lg btn-parsley']) !!} {!! Form::close() !!}
@stop