@extends ('backend.layouts.app') @section ('title', 'Lisp | Create Lisp') @section('after-styles') @endsection @section('page-header')

Lisp Management Create Lisp

@endsection @section('content') {{ Form::open(['route' => 'admin.lisp.lisp.store', 'enctype' => "multipart/form-data", 'class' => 'form-horizontal', 'role' => 'form', 'method' => 'post', 'id' => 'create-partner']) }}

Create Lisp

@include('backend.lisp.partials.lisp-header-buttons')
{{ Form::label('Title', 'Title', ['class' => 'col-lg-2 control-label']) }}
{{ Form::text('title', null, ['class' => 'form-control', 'required' => 'required', 'placeholder' => 'Enter title']) }}
{{ Form::label('Overview', 'Overview', ['class' => 'col-lg-2 control-label']) }}
{{ Form::textarea('overview', null, ['class' => 'form-control', 'id' => 'overview', 'required' => 'required', 'placeholder' => 'Enter overview']) }}
{{ Form::label('logo', 'Choose logo', ['class' => 'col-lg-2 control-label']) }}
{{ Form::file('logo', null, ['class' => 'form-control', 'placeholder' => 'Choose image']) }}
{{ Form::label('flat_fee', 'Flat Fee', ['class' => 'col-lg-2 control-label']) }}
{{ Form::text('flat_fee', null, ['class' => 'form-control', 'required' => 'required', 'placeholder' => 'Enter flat fee']) }}
{{ Form::label('min_fee_amount', 'Min Fee Amount', ['class' => 'col-lg-2 control-label']) }}
{{ Form::text('min_fee_amount', null, ['class' => 'form-control', 'required' => 'required', 'placeholder' => 'Enter min fee amount']) }}
@if (count($brokers) > 0)
{{ Form::label('Select stock brokers', 'Select stock brokers', ['class' => 'col-lg-2 control-label']) }}
@else No brokers avaliable @endif
{{ Form::label('is_direct', 'Is Direct?', ['class' => 'col-lg-2 control-label']) }}
{{ Form::label('Active', 'Active', ['class' => 'col-lg-2 control-label']) }}
{{ link_to_route('admin.lisp.lisp.index', trans('buttons.general.cancel'), [], ['class' => 'btn btn-danger btn-xs']) }}
{{ Form::submit(trans('buttons.general.crud.create'), ['class' => 'btn btn-success btn-xs']) }}
{{ Form::close() }} @endsection @section('after-scripts') @endsection