D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
tattooscyy
/
test
/
resources
/
views
/
admin
/
orders
/
Filename :
create.blade.php
back
Copy
@extends('admin.layouts.master') @section('content') <div class="row"> <div class="col-sm-10 col-sm-offset-2"> <h1>{{ trans('quickadmin::templates.templates-view_create-add_new') }}</h1> @if ($errors->any()) <div class="alert alert-danger"> <ul> {!! implode('', $errors->all('<li class="error">:message</li>')) !!} </ul> </div> @endif </div> </div> {!! Form::open(array('files' => true, 'route' => config('quickadmin.route').'.orders.store', 'id' => 'form-with-validation', 'class' => 'form-horizontal')) !!} <div class="form-group"> {!! Form::label('user_id', 'user_id', array('class'=>'col-sm-2 control-label')) !!} <div class="col-sm-10"> {!! Form::select('user_id', $user, old('user_id'), array('class'=>'form-control')) !!} </div> </div> <div class="form-group"> {!! Form::label('size', 'size', array('class'=>'col-sm-2 control-label')) !!} <div class="col-sm-10"> {!! Form::text('size', old('size'), array('class'=>'form-control')) !!} </div> </div> <div class="form-group"> {!! Form::label('catalogs_id', 'catalog_id', array('class'=>'col-sm-2 control-label')) !!} <div class="col-sm-10"> {!! Form::select('catalogs_id', $catalogs, old('catalogs_id'), array('class'=>'form-control')) !!} </div> </div> <div class="form-group"> {!! Form::label('saloon_id', 'saloon_id', array('class'=>'col-sm-2 control-label')) !!} <div class="col-sm-10"> {!! Form::select('saloon_id', $saloons, old('saloon_id'), array('class'=>'form-control')) !!} </div> </div> <div class="form-group"> {!! Form::label('artist_id', 'artist_id', array('class'=>'col-sm-2 control-label')) !!} <div class="col-sm-10"> {!! Form::select('artist_id', $artists, old('artist_id'), array('class'=>'form-control')) !!} </div> </div> <div class="form-group"> {!! Form::label('picture', 'picture', array('class'=>'col-sm-2 control-label')) !!} <div class="col-sm-10"> {!! Form::file('picture') !!} {!! Form::hidden('picture_w', 4096) !!} {!! Form::hidden('picture_h', 4096) !!} </div> </div><div class="form-group"> {!! Form::label('picture_data', 'picture_data', array('class'=>'col-sm-2 control-label')) !!} <div class="col-sm-10"> {!! Form::text('picture_data', old('picture_data'), array('class'=>'form-control')) !!} </div> </div><div class="form-group"> {!! Form::label('price', 'price', array('class'=>'col-sm-2 control-label')) !!} <div class="col-sm-10"> {!! Form::text('price', old('price'), array('class'=>'form-control')) !!} </div> </div><div class="form-group"> {!! Form::label('putdate', 'putdate', array('class'=>'col-sm-2 control-label')) !!} <div class="col-sm-10"> {!! Form::text('putdate', old('putdate'), array('class'=>'form-control')) !!} </div> </div><div class="form-group"> {!! Form::label('body', 'body', array('class'=>'col-sm-2 control-label')) !!} <div class="col-sm-10"> {!! Form::text('body', old('body'), array('class'=>'form-control')) !!} </div> </div><div class="form-group"> {!! Form::label('status', 'status', array('class'=>'col-sm-2 control-label')) !!} <div class="col-sm-10"> {!! Form::text('status', old('status'), array('class'=>'form-control')) !!} </div> </div> <div class="form-group"> <div class="col-sm-10 col-sm-offset-2"> {!! Form::submit( trans('quickadmin::templates.templates-view_create-create') , array('class' => 'btn btn-primary')) !!} </div> </div> {!! Form::close() !!} @endsection