@extends('themes.default1.admin.layout.admin') @section('PageHeader')

{!! Lang::get('lang.templates') !!}

@stop @section('content') {!! Form::model($template,['url'=>'templates/'.$template->id,'method'=>'patch']) !!}

{{Lang::get('lang.edit_template')}}

@if (count($errors) > 0)
{!! Lang::get('lang.alert') !!} !
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @if(Session::has('success'))
{{Session::get('success')}}
@endif @if(Session::has('fails'))
{{Lang::get('lang.alert')}}! {{Session::get('fails')}}
@endif

{!! $template->name !!}

{!! Form::label('type',Lang::get('lang.template-types'),['class'=>'required']) !!}* {!! Form::select('type',[''=>'Select','Type'=>$type],null,['class' => 'form-control']) !!}
{!! Form::label('subject',Lang::get('lang.subject')) !!} {!! Form::text('subject',null,['class' => 'form-control', 'id' =>'subject']) !!}

{!! Form::hidden('variable','0') !!} {!! Form::checkbox('variable','1') !!} {!! Form::label('subject',Lang::get('lang.use_subject')) !!}
{!! Form::label('message',Lang::get('lang.content'),['class'=>'required']) !!}* {!! Form::textarea('message',null,['class'=>'form-control','id'=>'textarea']) !!}
{!! Form::close() !!} @stop