@extends('layouts.master') @section('page_title', 'Create a New Ad Style') @section('content') {!! Form::open(['url' => action('SuperAdminSourceDataController@post_ad_style_create'), 'files' => true]) !!}
{!! Form::hidden('type', 9) !!} {{ Form::page_header("Create a New Ad Style", "sourcedata") }}
{{ Form::button_link('Back', action('SuperAdminSourceDataController@ad_style_show'), 'back_btn') }}
{{ Form::label_styled('Image Name:', 'source-data-label', \App\Helpers\FormComponentHelper::SIZE_LARGE) }} {{ Form::text_styled('visual_personality_source_name', null, 'account-pages-text-input md-lg', null) }} {{ Form::hidden("active", 0) }} {{ Form::checkbox_styled('active', null, 'Active', null, 'source-data-check') }}

@include('super_admin._upload_image')

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