@extends('layouts.frontend.app') @section('title', 'Jyoti Care' ) @section('style') @endsection @section('script') @endsection @section('content')
@if(Session::has('flash_success')) @endif

{{trans('general.jyoti-care-registration')}}

@if($errors->has('full_name'))
{{ $errors->first('full_name') }}
@endif
@if($errors->has('mobile_no'))
{{ $errors->first('mobile_no') }}
@endif
@if($errors->has('address'))
{{ $errors->first('address') }}
@endif
@if($errors->has('email_address'))
{{ $errors->first('email_address') }}
@endif
@if($errors->has('qualification'))
{{ $errors->first('qualification') }}
@endif
@if($errors->has('branch'))
{{ $errors->first('branch') }}
@endif
@if($errors->has('status_category'))
{{ $errors->first('status_category') }}
@endif
{!! captcha_img('flat') !!}
@if($errors->has('captcha'))
{{ $errors->first('captcha') }}
@endif
@endsection