@extends('layouts.admin') @section('content')
Intent Forms
@foreach($intent_forms as $key => $form) @endforeach
First Name Last Name Phone Email Business Type Date  
{{ $form->first_name }} {{ $form->last_name }} {{ $form->phone }} {{ $form->email }} {{ $form->businessType }} {{ $form->date }} {{ trans('global.view') }}
{!! $intent_forms->links() !!} @if(count($intent_forms) == 0)

No item available

@endif
@endsection @section('scripts') @parent @endsection