@extends('layouts.app') @section('page-header') @endsection @section('htmlheader_title') Add a Device to a Location @endsection @section('contentheader_title') Add a Device to a Customer Location @endsection @section('main-content')

Select a Customer

@if (count($errors) > 0)
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@foreach($customers as $customer) @endforeach
Select Name Phone Email Type Address City Zip
{{ $customer->name}} {{ $customer->tel}} {{ $customer->email}} {{ $customer->type}} {{ $customer->add}} {{ $customer->city}} {{ $customer->zip}}
Select Name Phone Type Address City Zip


Select a Location Once you Select a Customer

Select Address City State Zip Status Added On Updated On
Select Address City State Zip Status Added On Updated On


Select a Device

@foreach($devices as $device) @endforeach
Select Name Type Manufacturer Model Software Mac Address Serial Number Added to Inventory
{{ $device->name or 'Not Set' }} {{ $device->type}} {{ $device->manufacturer}} {{ $device->model}} {{ $device->revision or '' }} {{ $device->os}} {{$device->version}} {{ $device->mac}} {{ $device->serial_number or 'NA' }} {{ date_format($device->created_at, 'n/j/y g:i A')}}
Select Name Type Manufacturer Model Software Mac Address Serial Number Added to Inventory


@if ($verifypin == true)
@elseif ($verifypin == false) @else @endif
@endsection @section('page-scripts') @endsection