@extends('Frontend.Layouts.modal') @section('modal_class', 'modal-sm') @section('title') {{ trans('front.camera') }} @stop @section('body') {!! Form::open(['route' => 'device_camera.store', 'method' => 'POST']) !!} {!! Form::hidden('device_id', $device_id) !!}
{!! Form::label('name', trans('validation.attributes.name').':') !!} {!! Form::text('name', null, ['class' => 'form-control']) !!}
{!! Form::hidden('show_widget', 0) !!} {!! Form::checkbox('show_widget', 1, 0) !!} {!! Form::label('show_widget', trans('front.show_widget')) !!}
{!! Form::close() !!} @stop