@extends('home') @section('content')
Edit
Home
Edit
Form
@include('layouts.partials.messages')
Edit Business
@method('patch') @csrf
Business Name
@if ($errors->has('businessName'))
{{ $errors->first('businessName') }}
@endif
Business Email
@if ($errors->has('email'))
{{ $errors->first('email') }}
@endif
Owner Name
@if ($errors->has('ownerName'))
{{ $errors->first('ownerName') }}
@endif
Business Contact
@if ($errors->has('businessContact'))
{{ $errors->first('businessContact') }}
@endif
VAT No.
@if ($errors->has('vatNumber'))
{{ $errors->first('vatNumber') }}
@endif
Address
@if ($errors->has('address'))
{{ $errors->first('address') }}
@endif
City
@if ($errors->has('city'))
{{ $errors->first('city') }}
@endif
Country
@if ($errors->has('country'))
{{ $errors->first('country') }}
@endif
Latitude
@if ($errors->has('latitude'))
{{ $errors->first('latitude') }}
@endif
Longitude
@if ($errors->has('longitude'))
{{ $errors->first('longitude') }}
@endif
isAlwaysOpen
--SELECT OPTION--
Active
Deactive
@if ($errors->has('isAlwaysOpen'))
{{ $errors->first('isAlwaysOpen') }}
@endif
Business Type
--SELECT OPTION--
Entertainment
Restaurant
Information Technology
Training Center
Dance Club
@if ($errors->has('businessType'))
{{ $errors->first('businessType') }}
@endif
isActive
--SELECT OPTION--
Active
Deactive
@if ($errors->has('isActive'))
{{ $errors->first('isActive') }}
@endif
Category
--SELECT OPTION--
Film
Cinema
Webdevelopement
FrontEnd
It Training
Marraige
@if ($errors->has('categoryId'))
{{ $errors->first('categoryId') }}
@endif
Logo
@if ($errors->has('logoImageUrl'))
{{ $errors->first('logoImageUrl') }}
@endif
Feature Image
@if ($errors->has('featureImageUrl'))
{{ $errors->first('featureImageUrl') }}
@endif
Save
@stop