@extends('layouts.app') @section('title') Registration Form @stop @section('breadcrumb') @stop @section('content')
{{ csrf_field() }}
@if($errors->any())

Errors

    {!! implode('', $errors->all('
  • :message
  • ')) !!}
@endif

End User Form

Add the information


@if($errors->has('currency_number')) {{ $errors->first('currency_number') }} @endif
@if($errors->has('app_form_no')) {{ $errors->first('app_form_no') }} @endif
 
@stop @section('js') @stop