@extends('layouts.master') @section('page_title', $page_title) @section('content')
{{ Form::page_header($page_title, "sourcedata") }} {{ Form::open(['url' => $post_url]) }}
{{ Form::row_text_inline('block_label', 'Label', $grapejs_block->block_label, 2, 6) }} {{ Form::row_text_inline('block_id', 'Id', $grapejs_block->block_id, 2, 6) }} {{ Form::row_textarea_inline('block_content', 'Content', $grapejs_block->block_content, 2, 10) }} {{ Form::row_text_inline('block_picture_class', 'Picture Class', $grapejs_block->block_picture_class, 2, 6) }}
{{ Form::checkbox_ex('active', $grapejs_block->active, "Active", null, null, null, null, 'checkbox-with-hidden') }}
{{ Form::checkbox_ex('is_email', $grapejs_block->is_email, "Email Templates", null, null, null, null, 'checkbox-with-hidden') }}
{{ Form::checkbox_ex('is_website', $grapejs_block->is_website, "Website Templates", null, null, null, null, 'checkbox-with-hidden') }}
{{ Form::button_save() }} {{ Form::button_link('Cancel', action('SuperAdminSourceDataController@grapejs_blocks'), 'cancel_btn') }}
@endsection @section('page_style') @endsection