@extends('adminlte::layouts.app') @section('htmlheader_title') Edit Trades @endsection @section('contentheader_title') Edit Trades @endsection @section('header_styles') @stop @section('main-content') @if (count($errors) > 0)
Whoops! {{ trans('adminlte_lang::message.someproblems') }}

@endif
{!! Form::model($trade, ['route' => ['trades.update', collect($trade)->first() ], 'method' => 'patch']) !!}
{!! Form::label('name', 'Title:') !!} {!! Form::text('title', null, ['class' => 'form-control']) !!}
{!! Form::label('name', 'Order:') !!} {!! Form::text('order_id', null, ['class' => 'form-control']) !!}
{!! Form::submit('Save', ['class' => 'btn btn-primary']) !!} Cancel
{!! Form::close() !!}
@endsection