@extends('master') @section('content') @if(session()->has('message'))
{{ session()->get('message') }}
@endif
@if ($errors->any()) @foreach ($errors->all() as $error)
{{$error}}
@endforeach @endif

{{ __('Field labels marked with * are required input fields.') }}

@csrf

@endsection @section('page_script') @endsection