@extends('layouts.master') @section('page_title', 'Edit Child Theme') @section('content') {!! Form::model($child_theme, ['url' => action('SuperAdminSourceDataController@post_child_theme_edit', compact('parent_theme', 'child_theme'))]) !!}
{{ Form::page_header("Edit Child Theme", "sourcedata") }}
{{ Form::button_link('Back', action('SuperAdminSourceDataController@parent_theme_edit', compact('parent_theme')), 'back_btn') }}

{{ Form::label_styled('Theme Name:', 'source-data-label', \App\Helpers\FormComponentHelper::SIZE_LARGE) }} {{ Form::text_styled('child_theme_name', null, 'account-pages-text-input md-lg', null) }} {{ Form::hidden('active', 0) }} {{ Form::checkbox('active', 1, null, ['class' => 'brand-checkbox no-fade']) }}

{{ Form::label_styled('Documentation:', 'source-data-label', \App\Helpers\FormComponentHelper::SIZE_LARGE) }} {{ Form::text_styled('theme_documentation', null, 'account-pages-text-input md-lg', null) }}

{{ Form::button_save('Done') }}
{!! Form::close() !!} @endsection @section('page_script') {{--@include('shared_script._prevent_multiple_submits_script')--}} @endsection