{{ Form::label_title('Image') }}
{{ Form::label_grey($data->image_direction) }}
@foreach(\App\Models\Content_Block::$image_type_map as $key => $text) {{ Form::radio_ex($data->get_field_name('image_type'), $key, $data->image_type, $text, null, null, null, 'image-type') }} @endforeach
{{ Form::text_styled($data->get_field_name('image_url'), $data->calc_image_url, '') }}
{{ Form::button_tiny("Add Image", "add_image(".$data->campaign_deliverable_content_block.", ". (isset($width) ? $width : 0) .");", 'add_image_btn_'.$data->campaign_deliverable_content_block, $data->calc_image_url ? 'hide' : '' ) }}
@if (!isset($skip_dimensions))
{{ Form::label_ex('Height', \App\Helpers\FormComponentHelper::SIZE_SMALL) }} {{ Form::text_styled($data->get_field_name('image_height'), $data->image_height, '') }}
{{ Form::label_ex('Width', \App\Helpers\FormComponentHelper::SIZE_SMALL) }} {{ Form::text_styled($data->get_field_name('image_width'), $data->image_width, 'Width') }}
@endif