@extends('layouts.admin') @section('title'){{ __('Update') }} {{__('Country Currency')}} @endsection @section('content') @include('includes.page_header',['title'=>__('Update')." ".__('Country Currency'),'url'=>route('admin.countryCurrencies.index'),'icon' => $icon??'','permission'=>'CountryCurrency-view'])
{!! Form::model($countryCurrency, ['route' => ['admin.countryCurrencies.update', $countryCurrency->id], 'method' => 'patch', 'files' => true]) !!} @include('admin.country_currencies.fields') {!! Form::close() !!}
@endsection