@extends('Frontend.Layouts.modal')
@section('title')
{{ trans('global.add_new') }}
@stop
@section('body')
{!! Form::hidden('visible', 0) !!}
{!! Form::checkbox('visible', 1, true) !!}
{!! Form::label('visible', trans('validation.attributes.visible') ) !!}
{!! Form::label('title', trans('validation.attributes.title').':') !!}
{!! Form::text('title', null, ['class' => 'form-control']) !!}
{!! Form::label('price', trans('validation.attributes.price').':') !!}
{!! Form::text('price', null, ['class' => 'form-control']) !!}
{!! Form::label('objects', trans('validation.attributes.objects').':') !!}
{!! Form::text('objects', null, ['class' => 'form-control']) !!}
@include('Admin.Clients._perms')
{!! Form::close() !!}
@stop