@extends('admin.layouts.default') {{-- Page level styles --}} @section('header_styles') @stop {{-- /Page level styles --}} {{-- Page content --}} @section('content')
@if(session()->has('message'))
{{ session()->get('message') }}
@endif @if ($errors->any())
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif

Create Restaurant Users

{{ csrf_field() }}
@stop {{-- /Page content --}} @section('footer_scrips') @stop