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

Add New User

{{ csrf_field() }}
@if ($errors->has('name'))
{{ $errors->first('name') }}
@endif
@if ($errors->has('email'))
{{ $errors->first('email') }}
@endif
@if ($errors->has('role'))
{{ $errors->first('role') }}
@endif
@foreach($deployments as $index => $deployment)
@endforeach
Cancel
@endsection