@extends('layouts.app') @section('content')

{{ ($senddata->id != '') ? 'Edit' : 'Add' }} Client

{!! Form::model($senddata, ['route' => $route, 'method' => $method, 'id'=>'client_form' , 'files' => true,'class' => 'form']) !!} @if ($senddata->id)
{!! Form::select('status',['1'=>'Active','0'=>'In Active'],($senddata->id != '') ? $senddata->status : '',['class' => 'form-control']) !!}
@endif
Cancel
{!! Form::close() !!}
@endsection @section('javascript') @endsection