@extends('Admin.Layouts.modal') @section('title') {{ trans('global.add') }} @stop @section('body') {!! Form::open(['route' => 'admin.device_icons.store', 'method' => 'POST', 'id' => 'create_icon_form']) !!}
{!! Form::checkbox('by_status', 1) !!} {!! Form::label('by_status', trans('validation.attributes.by_status')) !!}
{!! Form::label('type', trans('validation.attributes.type').'*:') !!} {!! Form::select('type', $types, null, ['class' => 'form-control']) !!}
{!! Form::label('file', trans('validation.attributes.file').'*:') !!} {!! Form::file('file', ['class' => 'form-control']) !!}
{!! Form::close() !!} @stop @section('footer') @stop