@extends('layouts.admin_template') @section('content')

Edit Exchanger

View Exchanger Listing
{{ csrf_field() }}
@foreach (['danger', 'warning', 'success', 'info'] as $msg) @if(Session::has('alert-' . $msg)) @endif @endforeach
@if ($errors->has('fromid')) {{ $errors->first('fromid') }} @endif
@if ($errors->has('fromcountry')) {{ $errors->first('fromcountry') }} @endif
@if ($errors->has('fromamount')) {{ $errors->first('fromamount') }} @endif
@if ($errors->has('toid')) {{ $errors->first('toid') }} @endif
@if ($errors->has('tocountry')) {{ $errors->first('tocountry') }} @endif
@if ($errors->has('toamount')) {{ $errors->first('toamount') }} @endif
@if ($errors->has('note')) {{ $errors->first('note') }} @endif
@endsection