@extends('layouts.app') @section('title') New Transfer @stop @section('breadcrumb') @stop @section('content')

New Transfer

Add Information

{{csrf_field()}}
@if ($errors->has('from_account')) {{ $errors->first('from_account') }} @endif
@if ($errors->has('to_account')) {{ $errors->first('to_account') }} @endif
@if ($errors->has('amount')) {{ $errors->first('amount') }} @endif
@if ($errors->has('date')) {{ $errors->first('date') }} @endif
@if ($errors->has('memo')) {{ $errors->first('memo') }} @endif
 
@stop