@extends('backend.layouts.main') @section('title', 'Create New Forex Rate') @section('content')

Create New Forex Rate

@if ($errors->any())
Whoops! Please fix the following errors:
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf {{-- Include the form partial --}} @include('backend.forex-rates.partials.form')
@endsection