@extends ('backend.layouts.app') @section ('title', 'Stock Broker | Edit Stock Broker') @section('after-styles') @endsection @section('page-header')

Stock Broker Management Edit Stock Broker

@endsection @section('content') {{ Form::model($stock_broker, ['route' => ['admin.stock_broker.stock_broker.update', $stock_broker], 'enctype' => "multipart/form-data", 'class' => 'form-horizontal', 'role' => 'form', 'method' => 'PATCH', 'id' => 'edit-partner']) }}

Edit Stock Broker

@include('backend.stock_broker.partials.stock-broker-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']) }}
@if($stock_broker->logo) {{ Html::image('images/uploads/' . $stock_broker->logo, 'image', ['style' => 'width:130px; margin-bottom: 10px;']) }} @endif {{ 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']) }}
{{ Form::label('Active', 'Active', ['class' => 'col-lg-2 control-label']) }}
{{ link_to_route('admin.stock_broker.stock_broker.index', trans('buttons.general.cancel'), [], ['class' => 'btn btn-danger btn-xs']) }}
{{ Form::submit(trans('buttons.general.crud.update'), ['class' => 'btn btn-success btn-xs']) }}
{{ Form::close() }} @endsection @section('after-scripts') @endsection