@extends ('core.layouts.app') @section ('title', trans('sales_channel.edit_sales_channel') ) @section('page-header')

{{ trans('sales_channel.sales_channel')}} {{ trans('sales_channel.edit_sales_channel')}}

@endsection @section('content')

{{ trans('sales_channel.edit_sales_channel') }}

@include('focus.market.partials.additionals-header-buttons')
{{ Form::model($market, ['route' => ['biller.markets.update', $market], 'class' => 'form-horizontal', 'role' => 'form', 'method' => 'PATCH', 'id' => 'edit-additional']) }}
{{-- Including Form blade file --}} @include("focus.market.form")
{{ link_to_route('biller.markets.index', trans('buttons.general.cancel'), [], ['class' => 'btn btn-danger btn-md']) }} {{ Form::submit(trans('buttons.general.crud.update'), ['class' => 'btn btn-primary btn-md']) }} {{ Form::hidden('id', $market->id) }}
{{ Form::close() }}
@endsection