@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() }} Users Select Users @foreach($users as $user) {{ ucfirst($user->first_name) }} - {{ ucfirst($user->roles_names) }} @endforeach Restaurants Select Restaurants @foreach($restaurants as $restaurant) {{ ucfirst($restaurant->name) }} @endforeach @stop {{-- /Page content --}} @section('footer_scrips') @stop