@extends('layout') @section('content')

@include('partials.breadcrumb')

@if($basic->registration == 1)
{{ csrf_field() }}
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('username')) {{ $errors->first('username') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('phone')) {{ $errors->first('phone') }} @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
Already have an account ? Sign In
@else

Registration Has been Closed By Admin

@endif
@endsection