@extends('layouts.master') @section('page_title', 'New Mosaic Category') @section('content') {!! Form::open(['url' => action('SuperAdminSourceDataController@post_mosaic_category_create'), 'files' => true]) !!}
{!! Html::image('img/icon_business.png') !!}

Add Mosaic Category

{{ Form::row_text_inline('category', 'Category Name', null, 2, 6, \App\Helpers\FormComponentHelper::SIZE_MEDIUM) }}
{{ Form::label_ex('Jpg / Png Image', \App\Helpers\FormComponentHelper::SIZE_MEDIUM) }} {!! Form::file('jpg_image', ['class' => 'category-img-upload']) !!}
{{ Form::label_ex('Gif Image', \App\Helpers\FormComponentHelper::SIZE_MEDIUM) }} {!! Form::file('gif_image', ['class' => 'category-img-upload']) !!}
{{ Form::checkbox_styled('b2b_cat', null, 'B2B', 'b2b-checkbox') }}
{{ Form::label_ex('Metro Areas', \App\Helpers\FormComponentHelper::SIZE_MEDIUM) }}
{!! Form::checkbox('select_all', 1, null, ['id' => 'select-all-metros']) !!} @foreach($metros as $metro)
{!! Form::checkbox('metros[]', $metro->mosaic_metro, null, ['class' => 'metro-checkbox']) !!}
@endforeach
{{ Form::button_save() }} {{ Form::button_cancel() }}
{!! Form::close() !!} @endsection @section('page_script') @endsection @section('page_style') @endsection