@extends('layouts.master') @section('page_title', 'New Parent Theme') @section('content') {!! Form::open(['url' => action('SuperAdminSourceDataController@post_parent_theme_create')]) !!}
{{ Form::page_header("Create a New Parent Theme", "sourcedata") }}
{{ Form::button_link('Back', action('SuperAdminSourceDataController@show_parent_themes'), 'back_btn') }}
{{ Form::label_styled('Parent Theme Name:', 'source-data-label', \App\Helpers\FormComponentHelper::SIZE_LARGE) }} {{ Form::text_styled('theme_name', null, 'account-pages-text-input md-lg', null) }} {{ Form::hidden("active", 0) }} {{ Form::checkbox_styled('active', null, 'Active', null, 'source-data-check') }}

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