@extends('layouts.black_admin') @section('title', trans('messages.edit_template')) @section('page_script') @endsection @section('content')
{{ csrf_field() }}
@include('helpers.form_control', [ 'class' => 'template-editor', 'label' => '', 'required' => true, 'type' => 'textarea', 'name' => 'content', 'value' => $layout->content, 'rules' => ['content' => 'required'] ])
@endsection