Viewing file: register.blade.php (6.72 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
@extends('layouts.front', ['title' => __('User Profile')]) @if (strlen(config('settings.recaptcha_site_key'))>2) @section('head') {!! htmlScriptTagJsApi([]) !!} @endsection @endif
@section('content') @include('users.partials.header', [ 'title' => "", 'headerImage' =>config('global.restorant_details_cover_image') ])
<div class="container-fluid mt--7"> <div class="row">
</div> <div class="col-xl-8 offset-xl-2"> <div class="card bg-secondary shadow"> <div class="card-header bg-white border-0"> <div class="row align-items-center"> <h3 class="col-12 mb-0">{{ __('Register your restaurant') }}</h3> </div> </div> <div class="card-body"> <form id="{{ getFormId() }}" method="post" action="{{ route('newrestaurant.store') }}" autocomplete="off"> @csrf
<h6 class="heading-small text-muted mb-4">{{ __('Restaurant information') }}</h6>
@if (session('status')) <div class="alert alert-success alert-dismissible fade show" role="alert"> {{ session('status') }} <button type="button" class="close" data-dismiss="alert" aria-label="Close"> <span aria-hidden="true">×</span> </button> </div> @endif <div class="pl-lg-4"> <div class="form-group{{ $errors->has('name') ? ' has-danger' : '' }}"> <label class="form-control-label" for="name">{{ __('Restaurant Name') }}</label> <input type="text" name="name" id="name" class="form-control form-control-alternative{{ $errors->has('name') ? ' is-invalid' : '' }}" placeholder="{{ __('Restaurant Name here') }} ..." value="{{ isset($_GET["name"])?$_GET['name']:""}}" required autofocus> @if ($errors->has('name')) <span class="invalid-feedback" role="alert"> <strong>{{ $errors->first('name') }}</strong> </span> @endif </div> </div> <hr class="my-4" /> <h6 class="heading-small text-muted mb-4">{{ __('Owner information') }}</h6> <div class="pl-lg-4"> <div class="form-group{{ $errors->has('name_owner') ? ' has-danger' : '' }}"> <label class="form-control-label" for="name_owner">{{ __('Owner Name') }}</label> <input type="text" name="name_owner" id="name_owner" class="form-control form-control-alternative{{ $errors->has('name_owner') ? ' is-invalid' : '' }}" placeholder="{{ __('Owner Name here') }} ..." value="{{ isset($_GET["name"])?$_GET['name']:""}}" required autofocus>
@if ($errors->has('name_owner')) <span class="invalid-feedback" role="alert"> <strong>{{ $errors->first('name_owner') }}</strong> </span> @endif </div> <div class="form-group{{ $errors->has('email_owner') ? ' has-danger' : '' }}"> <label class="form-control-label" for="email_owner">{{ __('Owner Email') }}</label> <input type="email" name="email_owner" id="email_owner" class="form-control form-control-alternative{{ $errors->has('email_owner') ? ' is-invalid' : '' }}" placeholder="{{ __('Owner Email here') }} ..." value="{{ isset($_GET["email"])?$_GET['email']:""}}" required autofocus>
@if ($errors->has('email_owner')) <span class="invalid-feedback" role="alert"> <strong>{{ $errors->first('email_owner') }}</strong> </span> @endif </div> <div class="form-group{{ $errors->has('phone_owner') ? ' has-danger' : '' }}"> <label class="form-control-label" for="phone_owner">{{ __('Owner Phone') }}</label> <input type="text" name="phone_owner" id="phone_owner" class="form-control form-control-alternative{{ $errors->has('phone_owner') ? ' is-invalid' : '' }}" placeholder="{{ __('Owner Phone here') }} ..." value="{{ isset($_GET["phone"])?$_GET['phone']:""}}" required autofocus>
@if ($errors->has('phone_owner')) <span class="invalid-feedback" role="alert"> <strong>{{ $errors->first('phone_owner') }}</strong> </span> @endif </div>
<div class="text-center"> @if (strlen(config('settings.recaptcha_site_key'))>2) @if ($errors->has('g-recaptcha-response')) <span class="invalid-feedback" role="alert"> <strong>{{ $errors->first('g-recaptcha-response') }}</strong> </span> @endif
{!! htmlFormButton(__('Save'), ['id'=>'thesubmitbtn','class' => 'btn btn-success mt-4']) !!} @else <button type="submit" id="thesubmitbtn" class="btn btn-success mt-4">{{__('Save')}}</button> @endif
</div> </div> </form> </div> </div> </div> </div> <br/> </div> @endsection
@section('js') @if (isset($_GET['name'])&&$errors->isEmpty()) <script> "use strict"; document.getElementById("thesubmitbtn").click(); </script> @endif @endsection
|