@extends('layouts.auth') @section('content') {!! Form::open(['route' => 'user.auth.register']) !!}

انشاء حساب جديد

{!! Form::label('الاسم') !!} {!! Form::text('name', null, ['class' => 'form-control', 'placeholder' => 'الاسم']) !!} @if($errors->has('name'))
{{ $errors->first('name') }}
@endif
{!! Form::label('البريد الإلكتروني') !!} {!! Form::text('email', null, ['type' => 'email', 'class' => 'form-control', 'placeholder' => 'البريد الإلكتروني']) !!} @if($errors->has('email'))
{{ $errors->first('email') }}
@endif
{!! Form::label('رقم الجوال') !!} {!! Form::text('phone_number', null, ['class' => 'form-control', 'placeholder' => 'رقم الجوال']) !!} @if($errors->has('phone_number'))
{{ $errors->first('phone_number') }}
@endif
مثال: +966500000000
{!! Form::label('كلمة السر') !!} {!! Form::password('password', ['class' => 'form-control', 'placeholder' => 'كلمة السر']) !!} @if($errors->has('password'))
{{ $errors->first('password') }}
@endif
{!! Form::label('تأكيد كلمة السر') !!} {!! Form::password('password_confirmation', ['class' => 'form-control', 'placeholder' => 'تأكيد كلمة السر']) !!} @if($errors->has('password_confirmation'))
{{ $errors->first('password_confirmation') }}
@endif
{!! Form::close() !!} @endsection