@extends('backend.layouts.master') @section('title') Clients @endsection @section('css') @endsection @section('content')

Clients

{!! Form::open(['route' => 'clients.store','method'=>'post','class'=>'needs-validation','novalidate'=>'','enctype'=>'multipart/form-data']) !!}

Client details

Please select the company name.
Please enter the category name.
Please select the country.

Client Image Details *

Please select a image.
{!! Form::close() !!}

Client List

@if(@$clients) @foreach($clients as $client) @endforeach @endif
Client Image Name Link Country Action
{{@$client->slug}} {{(!empty($client->name)) ? $client->name:"Not Set"}} {{(!empty($client->link)) ? $client->link:"Not Set"}}
@endsection @section('js') @endsection