@extends ('core.layouts.app') @section ('title', trans('labels.backend.currencies.management') . ' | ' . trans('labels.backend.currencies.edit')) @section('page-header')

{{ trans('labels.backend.currencies.management') }} {{ trans('labels.backend.currencies.edit') }}

@endsection @section('content')

{{ trans('labels.backend.currencies.edit') }}

@include('focus.currencies.partials.currencies-header-buttons')
{{ Form::model($currencies, ['route' => ['biller.currencies.update', $currencies], 'class' => 'form-horizontal', 'role' => 'form', 'method' => 'PATCH', 'id' => 'edit-currency']) }}
{{-- Including Form blade file --}} @include("focus.currencies.form")
{{ link_to_route('biller.currencies.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::close() }}
@endsection