@extends('frontend.layouts.app') @push('style') @endpush @section('main-content') {{ __('login') }} {{ __('register') }} @csrf {{ __('Customer') }} {{ __('Restaurant Owner') }} {{ __('Delivery Man') }} {{ __('First name') }} @if ($errors->has('first_name')) {{ $errors->first('first_name') }} @endif {{ __('Last Name') }} @if ($errors->has('last_name')) {{ $errors->first('last_name') }} @endif {{ __('Username') }} @if ($errors->has('username')) {{ $errors->first('username') }} @endif {{ __('Email Address') }} @if ($errors->has('register_email')) {{ $errors->first('register_email') }} @endif {{ __('frontend.phone') }} @error('phone') {{ $message }} @enderror {{ __('Address') }} {{ __('Password') }} @error('password') {{ $message }} @enderror {{ __('Repeat Password') }} @if ($errors->has('password_confirmation')) {{ $errors->first('password_confirmation') }} @endif @endsection @push('js') @endpush