PHP Classes

File: resources/views/livewire/tenant/billing/billing-address.blade.php

Recommend this page to a friend!
  Classes of Nyi Nyi Lwin   Laravel SAAS Boilerplate   resources/views/livewire/tenant/billing/billing-address.blade.php   Download  
File: resources/views/livewire/tenant/billing/billing-address.blade.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: Laravel SAAS Boilerplate
Base application to develop software as a service
Author: By
Last change:
Date: 1 year ago
Size: 4,966 bytes
 

Contents

Class file image Download
<div class="mt-8">
    <h3 class="text-lg font-medium text-gray-900">{{ __('Billing Address') }}</h3>
    <div class="mt-2 shadow overflow-hidden sm:rounded-md">
        <div class="px-4 py-5 bg-white sm:p-6 flex flex-row flex-wrap">
            <div class="w-1/2 p-2">
                <label for="line1" class="block text-sm font-medium leading-5 text-gray-700">{{ __('Line 1') }}</label>
                <div class="mt-1 relative rounded-md shadow-sm">
                    <input id="line1" wire:model="line1" type="text" class="rounded-md shadow-sm border-gray-300 focus:border-indigo-300 focus:ring focus:ring-indigo-200 focus:ring-opacity-50 w-full" placeholder="{{ __('Line 1') }}">
                </div>
                @error('line1')
                <p class="text-sm mt-2 text-red-500">
                    {{ $message }}
                </p>
                @enderror
            </div>
            <div class="w-1/2 p-2">
                <label for="line2" class="block text-sm font-medium leading-5 text-gray-700">{{ __('Line 2') }}</label>
                <div class="mt-1 relative rounded-md shadow-sm">
                    <input id="line2" wire:model="line2" type="text" class="rounded-md shadow-sm border-gray-300 focus:border-indigo-300 focus:ring focus:ring-indigo-200 focus:ring-opacity-50 w-full" placeholder="{{ __('Line 2') }}">
                </div>
                @error('line2')
                <p class="text-sm mt-2 text-red-500">
                    {{ $message }}
                </p>
                @enderror
            </div>
            <div class="mt-4 w-1/2 p-2">
                <label for="city" class="block text-sm font-medium leading-5 text-gray-700">{{ __('City') }}</label>
                <div class="mt-1 relative rounded-md shadow-sm">
                    <input id="city" wire:model="city" type="text" class="rounded-md shadow-sm border-gray-300 focus:border-indigo-300 focus:ring focus:ring-indigo-200 focus:ring-opacity-50 w-full" placeholder="{{ __('City') }}">
                </div>
                @error('city')
                <p class="text-sm mt-2 text-red-500">
                    {{ $message }}
                </p>
                @enderror
            </div>
            <div class="mt-4 w-1/2 p-2">
                <label for="postal_code" class="block text-sm font-medium leading-5 text-gray-700">{{ __('Postal Code') }}</label>
                <div class="mt-1 relative rounded-md shadow-sm">
                    <input id="postal_code" wire:model="postal_code" type="text" class="rounded-md shadow-sm border-gray-300 focus:border-indigo-300 focus:ring focus:ring-indigo-200 focus:ring-opacity-50 w-full" placeholder="{{ __('Postal Code') }}">
                </div>
                @error('postal_code')
                <p class="text-sm mt-2 text-red-500">
                    {{ $message }}
                </p>
                @enderror
            </div>
            <div class="mt-4 w-1/2 p-2">
                <label for="country" class="block text-sm font-medium leading-5 text-gray-700">{{ __('Country') }}</label>
                <div class="mt-1 relative rounded-md shadow-sm">
                    <select id="country" wire:model="country" type="text" class="rounded-md shadow-sm border-gray-300 focus:border-indigo-300 focus:ring focus:ring-indigo-200 focus:ring-opacity-50 w-full">
                        @include('partials.countries')
                    </select>
                </div>
                @error('country')
                <p class="text-sm mt-2 text-red-500">
                    {{ $message }}
                </p>
                @enderror
            </div>
            <div class="mt-4 w-1/2 p-2">
                <label for="state" class="block text-sm font-medium leading-5 text-gray-700">{{ __('State') }}</label>
                <div class="mt-1 relative rounded-md shadow-sm">
                    <input id="state" wire:model="state" type="text" class="rounded-md shadow-sm border-gray-300 focus:border-indigo-300 focus:ring focus:ring-indigo-200 focus:ring-opacity-50 w-full" placeholder="{{ __('State') }}">
                </div>
                @error('state')
                <p class="text-sm mt-2 text-red-500">
                    {{ $message }}
                </p>
                @enderror
            </div>
            @if($success)
                <p class="text-sm mt-4 text-green-500">
                    {{ $success }}
                </p>
            @endif
        </div>
        <div class="px-4 sm:px-6 py-2 bg-gray-50 flex justify-end">

            <button wire:click="save" class="px-4 py-2 border border-transparent text-sm font-medium rounded-md text-white bg-indigo-600 shadow-sm hover:bg-indigo-500 focus:outline-none focus:shadow-outline-blue focus:bg-indigo-500 active:bg-indigo-600 transition duration-150 ease-in-out">
                {{ __('Save Billing Address') }}
            </button>
        </div>
    </div>
</div>