@extends('apex-layouts.main') @section('title',"Lead Form") @section('header-right') Go Back @endsection @section('content')
@if ($model->exists) @method('PUT') @endif @csrf

{{ ($model->exists)?'Edit leads':'New leads' }}

@if ($errors->has('phone')) {{ $errors->first('phone') }} @endif
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif