@extends('super_admins.layouts.master') @section('title') Edit Currency @endsection @section('css') @endsection @section('content') @if ($errors->any()) @foreach ($errors->all() as $error) {{-- {{ $error }} --}} @endforeach @endif
{{--
--}}

Edit Currency

@csrf @method('PUT')
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('code')) {{ $errors->first('code') }} @endif
@if ($errors->has('symbol')) {{ $errors->first('symbol') }} @endif
@if ($errors->has('direction')) {{ $errors->first('direction') }} @endif
@if ($errors->has('decimal_places')) {{ $errors->first('decimal_places') }} @endif
{{--
@if ($errors->has('value')) {{ $errors->first('value') }} @endif
--}} {{--
is_default) checked @endif class="custom-control-input" id="is_default" aria-describedby="IsDefaultError" aria-invalid="true">
@if ($errors->has('is_default')) {{ $errors->first('is_default') }} @endif
is_active) checked @endif class="custom-control-input" id="is_active" aria-describedby="IsActiveError" aria-invalid="true">
@if ($errors->has('is_active')) {{ $errors->first('is_active') }} @endif
--}}
{{--
--}}
@include('super_admins.includes.image_cropper_modal') @endsection @section('scripts') @include('super_admins.includes.image_cropper_scripts') @endsection