@extends('setting::settings') @section('title', localize('edit_currency')) @section('setting_content')
{{ localize('edit_currency') }}
@can('read_currency')  {{ localize('currency_list') }} @endcan
@csrf @method('PATCH')
@input(['input_name' => 'title', 'value' => $currency->title])
@input(['input_name' => 'symbol', 'value' => $currency->symbol])
@if ($errors->has('country_id'))
{{ $errors->first('country_id') }}
@endif
status == '1' ? 'checked' : '' }}> {{ localize('active') }}
status == '0' ? 'checked' : '' }}>{{ localize('inactive') }}
@endsection