@extends('layouts/app') @section('content')

Receipt Footer Settings

@if(Session::has('message'))
Success
{{ Session::get('message') }} @php Session::forget('message'); @endphp
@endif @if(Session::has('error'))
Errors!
@foreach(Session::get('error') as $err) {{ $err }}
@endforeach @php Session::forget('error'); @endphp
@endif

Note:

* The footer can left empty or must not exceeds 4 lines once have data.

* Each line must not consists more than 48 characters.

@csrf
@if ($errors->has('value')) {{ $errors->first('value') }} @endif
@endsection