@extends('Admin.Layouts.modal')
@section('modal_class', 'modal-lg')
@section('title')
{{ trans('global.edit') }}
@stop
@section('body')
{!! Form::open(array('route' => 'admin.sms_templates.update', 'method' => 'PUT')) !!}
{!! Form::hidden('id', $item->id) !!}
{!! Form::label('title', trans('validation.attributes.title').':') !!}
{!! Form::text('title', $item->title, ['class' => 'form-control']) !!}
{!! Form::label('note', trans('validation.attributes.note').':') !!}
{!! Form::textarea('note', $item->note, ['class' => 'form-control wysihtml5']) !!}
@foreach($replacers as $key => $text)
{{ $key }}
{{ $text }}
@endforeach
{!! Form::close() !!}
@stop